Skip to content

Commit f90c5d5

Browse files
committed
chore: update playground
1 parent 10c7be4 commit f90c5d5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

playground/src/views/tests/ControlledView.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import {
1010
} from 'vaul-vue'
1111
import { ref } from 'vue'
1212
13-
const open = ref < boolean > (false)
14-
const fullyControlled = ref < boolean > (false)
13+
const open = ref<boolean>(false)
14+
const fullyControlled = ref<boolean>(false)
1515
</script>
1616

1717
<template>

playground/src/views/tests/NonDismissibleView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from 'vaul-vue'
1010
import { ref } from 'vue'
1111
12-
const open = ref < boolean > (false)
12+
const open = ref<boolean>(false)
1313
</script>
1414

1515
<template>

playground/src/views/tests/WithoutScaledBackgroundView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from 'vaul-vue'
1111
import { ref } from 'vue'
1212
13-
const open = ref < boolean > (false)
13+
const open = ref<boolean>(false)
1414
</script>
1515

1616
<template>

0 commit comments

Comments
 (0)