vue-sprintf-components
v0.9.3
Published
Replace text with vue components
Downloads
10
Maintainers
Readme
vue-sprintf-components
Sprintf with vue components
Demo
Install
Via Yarn:
yarn add vue-sprintf-components
Via NPM:
npm i vue-sprintf-components
Quick start
<template>
<div>
<VueSprintf text="component say: {0}">
<ButtonUi>
Hello!
</ButtonUi>
</VueSprintf>
<!-- render: component say: <button>hello!</button> -->
</div>
</template>
<script>
import VueSprintf from "vue-sprintf-components";
export default {
components: {
VueSprintf,
ButtonUi: {
template: '<button><slot></slot></button>'
}
}
};
</script>
Usage
The component takes 2 props: text
and silence
- text
- type:
String
- required:
true
Any string with placeholders{0}
and named placeholders{name}
- type:
- silence
- type:
Boolean
If silence false, if there are not enough slots for placeholders, there will be an error
- type:
- placeholders
- type:
Array|Object
Fallback placeholders if slots not enoght
- type:
Example
With args placeholders
<VueSprintf text="component say: {0}">
<ButtonUi>
Hello!
</ButtonUi>
</VueSprintf>
To render
component say: <button>Hello!</button>
With named placeholders
<VueSprintf text="component 'a' say: {a} and component 'b' say: {b}">
<ButtonUi slot="a">
Hello!
</ButtonUi>
<ButtonUi slot="b">
Bye-Bye!
</ButtonUi>
</VueSprintf>
To render
component 'a' say: <button>Hello!</button> and component 'b' say: <button>Bye-Bye!</button>
With named placeholders + fallback placeholders
<VueSprintf text="component 'a' say: {a} and component 'b' say: {b}"
:placeholders="{ b: 'Bye-bye' }">
<ButtonUi slot="a">
Hello!
</ButtonUi>
</VueSprintf>
To render
component 'a' say: <button>Hello!</button> and component 'b' say: Bye-Bye!
With list placeholders + fallback placeholders
<VueSprintf text="component '0' say: {0} and component '1' say: {1}"
:placeholders="['Bye-bye']">
<ButtonUi>
Hello!
</ButtonUi>
</VueSprintf>
To render
component '0' say: <button>Hello!</button> and component '1' say: Bye-Bye!