15 lines
356 B
Vue
15 lines
356 B
Vue
<template>
|
||
<div>
|
||
<tiny-fluent-editor v-model="value" :data-type="false" :data-upgrade="false"></tiny-fluent-editor>
|
||
内容:<br />
|
||
{{ value }}
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref } from 'vue'
|
||
import TinyFluentEditor from '@opentiny/vue-fluent-editor'
|
||
|
||
const value = ref('<p>Hello <strong>FluentEditor</strong>!</p>')
|
||
</script>
|