cyber/src/pages/test.vue

16 lines
234 B
Vue
Raw Normal View History

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