primevue-mirror/apps/showcase/doc/editor/BasicDoc.vue

55 lines
1.0 KiB
Vue
Raw Permalink Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-10-30 11:18:22 +00:00
<p>Editor is used with the <i>v-model</i> property for two-way value binding.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
<div class="card">
<Editor v-model="value" editorStyle="height: 320px" />
</div>
<DocSectionCode :code="code" :dependencies="{ quill: '2.0.0' }" component="Editor" />
2023-02-28 08:29:30 +00:00
</template>
<script>
export default {
data() {
return {
value: '',
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<Editor v-model="value" editorStyle="height: 320px" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<Editor v-model="value" editorStyle="height: 320px" />
</div>
</template>
<script>
export default {
data() {
return {
value: ''
}
}
}
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<Editor v-model="value" editorStyle="height: 320px" />
</div>
</template>
<script setup>
import { ref } from "vue";
const value = ref('');
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>