PixelAI-admin/src/views/menu/menu1/menu12/menu122/index.vue

20 lines
359 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<el-input v-model="val" placeholder="menu122请输入内容测试路由缓存"></el-input>
</div>
</template>
<script lang="ts">
import { toRefs, reactive } from "vue";
export default {
name: "menu122",
setup() {
const state = reactive({
val: "",
});
return {
...toRefs(state),
};
},
};
</script>