Skip to content

Commit

Permalink
fix(m): make SMFade :once default to true (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiaking authored Nov 14, 2023
1 parent 6859f88 commit 06ed98c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/components/SMFade.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import SM, { type Props } from './SM.vue'
withDefaults(defineProps<Props>(), {
opacity: 0
opacity: 0,
once: true
})
</script>

Expand Down

0 comments on commit 06ed98c

Please sign in to comment.