Blame view

src/views/demo/level/Menu111.vue 303 Bytes
vben authored
1
2
3
4
<template>
  <div class="p-5">
    多层级缓存-页面1-1-1
    <br />
Vben authored
5
    <Input />
vben authored
6
7
8
9
  </div>
</template>
<script lang="ts">
  import { defineComponent } from 'vue';
Vben authored
10
11
  import { Input } from 'ant-design-vue';
  export default defineComponent({ name: 'Menu111Demo', components: { Input } });
vben authored
12
</script>