Blame view

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