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.
11 lines
314 B
11 lines
314 B
<!-- wangEditor富文本编辑器示例 -->
|
|
<script setup lang="ts">
|
|
import Editor from "@/components/WangEditor/index.vue";
|
|
const value = ref("初始内容");
|
|
</script>
|
|
|
|
<template>
|
|
<div class="app-container">
|
|
<editor v-model="value" style="height: calc(100vh - 124px); z-index:9999" />
|
|
</div>
|
|
</template>
|
|
|