16 lines
234 B
Vue
16 lines
234 B
Vue
|
<script setup>
|
||
|
|
||
|
import GeneralEditor from "../components/GeneralEditor.vue";
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="container">
|
||
|
<h1>测试页面</h1>
|
||
|
<GeneralEditor></GeneralEditor>
|
||
|
</div>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|