Icon.vue 245 B

1234567891011121314
  1. <script setup lang='ts'>
  2. import {NIcon} from 'naive-ui';
  3. defineOptions({name: 'MenuIcon'});
  4. const props = defineProps<{icon: string}>();
  5. </script>
  6. <template>
  7. <NIcon>
  8. <component :is="props.icon" theme="filled" />
  9. </NIcon>
  10. </template>