primevue-mirror/doc/editor/pt/PTDoc.vue

77 lines
1.4 KiB
Vue
Raw Normal View History

2023-05-05 10:31:26 +00:00
<template>
<DocSectionText v-bind="$attrs"></DocSectionText>
<div class="card">
<Editor
v-model="value"
:pt="{
content: { style: { height: '320px' } },
toolbar: { class: 'surface-ground' }
}"
/>
</div>
<DocSectionCode :code="code" :dependencies="{ quill: '1.3.7' }" component="Editor" />
</template>
<script>
export default {
data() {
return {
value: '',
code: {
2023-09-22 12:54:14 +00:00
basic: `
<Editor
2023-05-05 10:31:26 +00:00
v-model="value"
:pt="{
content: { style: { height: '320px' } },
toolbar: { class: 'surface-ground' }
}"
2023-10-15 09:38:39 +00:00
/>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-05-05 10:31:26 +00:00
<div class="card">
<Editor
v-model="value"
:pt="{
content: { style: { height: '320px' } },
toolbar: { class: 'surface-ground' }
}"
/>
</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-05-05 10:31:26 +00:00
<div class="card">
<Editor
v-model="value"
:pt="{
content: { style: { height: '320px' } },
toolbar: { class: 'surface-ground' }
}"
/>
</div>
</template>
<script setup>
import { ref } from "vue";
const value = ref('');
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-05-05 10:31:26 +00:00
}
};
}
};
</script>