1 2 3 4 5 6 7 8 9 10 11 12 13 14
<script setup lang="ts"> defineProps({ isPrimaryAction: Boolean }) const navigateToImport = async () => { navigateTo('/import'); } </script> <template> <Button :type="isPrimaryAction ? 'solid' : 'text'" :icon="['fas', 'file-import']" label="Import" @click="navigateToImport" /> </template>