index.vue 224 B

12345678910111213
  1. <template>
  2. <vab-icon icon="t-shirt-line" @click="handleOpenTheme" />
  3. </template>
  4. <script lang="ts" setup>
  5. defineOptions({
  6. name: 'VabTheme',
  7. })
  8. const handleOpenTheme = () => {
  9. $pub('shop-vite-open-theme')
  10. }
  11. </script>