1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| <script setup lang="ts">
| import { ContentWrap } from '@/components/ContentWrap'
| import { JsonEditor } from '@/components/JsonEditor'
| import { useI18n } from '@/hooks/web/useI18n'
| import { ref, watch } from 'vue'
|
| const { t } = useI18n()
|
| const defaultData = ref({
| title: '标题',
| content: '内容'
| })
|
| watch(
| () => defaultData.value,
| (val) => {
| console.log(val)
| },
| {
| deep: true
| }
| )
|
| setTimeout(() => {
| defaultData.value = {
| title: '异步标题',
| content: '异步内容'
| }
| }, 4000)
| </script>
|
| <template>
| <ContentWrap :title="t('richText.jsonEditor')" :message="t('richText.jsonEditorDes')">
| <JsonEditor v-model="defaultData" />
| </ContentWrap>
| </template>
|
|