Blame view

src/views/demo/level/Menu2.vue 309 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';
11
vben authored
12
13
  export default defineComponent({
    name: 'Menu2Demo',
Vben authored
14
    components: { Input },
vben authored
15
16
  });
</script>