feat: tools工具函数和自动生成路由
parent
8fb7a81b41
commit
a75b3e674a
@ -0,0 +1,15 @@
|
|||||||
|
<template>
|
||||||
|
<el-card> 基础模版 </el-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="jsx">
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
defineOptions({
|
||||||
|
name: 'DemoTools',
|
||||||
|
});
|
||||||
|
|
||||||
|
const page = ref({});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
<template>
|
||||||
|
<el-card> 基础模版 </el-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="jsx">
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
defineOptions({
|
||||||
|
name: 'DemoTools',
|
||||||
|
});
|
||||||
|
|
||||||
|
const page = ref({});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
||||||
Loading…
Reference in New Issue