Important
This package is no longer maintained. All its functions are now included in the @nextcloud/vue package since version 7.8.0.
This library provides a simple vue component to render text with rich placeholder replacements.
The parameters that are replaced can either be a string or an object that allows rendering any Vue component into the text.
Placeholders are wrapped in brackets, like {placeholder}
.
Markdown can be used for basic text formatting.
npm install --save @nextcloud/vue-richtext
import { RichText } from '@nextcloud/vue-richtext'
@import '@nextcloud/vue-richtext/dist/style.css';
- Input string:
The file {file} was added…
- Arguments:
- file:
'MyDocument'
- file:
- Renders:
The file 'MyDocument' was added…
<template>
<RichText :text="text" :arguments="args" />
</template>
<script>
import RichText from '@nextcloud/vue-richtext'
import UserBubble from './UserBubble'
export default {
name: 'RichTextDemo',
components: {
RichText,
},
data: () => {
return {
text: 'The file {file} was added by {username}',
args: {
file: 'MyDocument.odt',
username: {
component: UserBubble,
props: {
user: 'Jane Doe'
}
}
}
}
}
}
</script>
<template>
<span class="user">{{ user }}</span>
</template>
<script>
export default {
name: 'UserBubble',
props: {
user: {
type: String,
default: ''
}
}
}
</script>
<style scoped>
.user {
border-radius: 3px;
background-color: #eee;
padding: 3px;
}
</style>
- Input string:
The file {file} was added by {username}
- Arguments:
- file:
'MyDocument'
- username:
{ component: UserBubble, props: { username: 'Jane Doe' }
- file:
- Renders:
The file 'MyDocument' was added by <UserBubble>Jane Doe</UserBubble>
- Input string:
The **file** *{file}* was added by {username}
- Arguments:
- file:
'MyDocument'
- username:
{ component: UserBubble, props: { username: 'Jane Doe' }
- file:
- Renders:
The <strong>file</strong> <i>'MyDocument'</i> was added by <UserBubble>Jane Doe</UserBubble>
A full example is shown in the documentation