You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
366 B
18 lines
366 B
<script setup>
|
|
const content = ref('')
|
|
|
|
const { data: res } = await useMyFetch('/about/getAbout', "GET", { id: 2 })
|
|
|
|
if (res.value.code === 200) {
|
|
content.value = res.value.data
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="toolbar">
|
|
<div class="tTitle">{{ $t('About.concept') }}</div>
|
|
</div>
|
|
<div class="content ck-content" v-html="content">
|
|
</div>
|
|
</template> |