components.vue 569 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="flex flex-col gap-4 min-h-screen p-2">
  3. <EditorWysiWyg />
  4. <div class="w-48 h-8 loading" />
  5. <button
  6. class="mt-3 w-full border-[1px] font-semibold text-md border-primary hover:bg-primary hover:text-black rounded-xl flex gap-3 justify-center items-center duration-150"
  7. @click="testSnackBar"
  8. >
  9. SnackBar
  10. </button>
  11. </div>
  12. </template>
  13. <script setup lang="ts">
  14. const snackbar = useSnackbar();
  15. function testSnackBar() {
  16. snackbar.add({
  17. type: 'success',
  18. text: 'This is a snackbar message'
  19. })
  20. }
  21. </script>