App.vue 407 B

1234567891011121314151617
  1. <script setup lang="ts">
  2. import { ref } from "vue"
  3. import { IconAd, IconAdOff, IconAdFilled } from '@tabler/icons-vue'
  4. const active = ref(false)
  5. </script>
  6. <template>
  7. <a @click="active = !active">
  8. <IconAdOff v-if="active" size="48" />
  9. <IconAd v-else size="48" />
  10. </a>
  11. <IconAd size="48" stroke="1" />
  12. <IconAdOff size="48" stroke="1.5" />
  13. <IconAdFilled size="48" stroke="2" />
  14. </template>