Menu2.vue 309 B

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