We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8d0330 commit e1786e8Copy full SHA for e1786e8
.vscode/settings.json
@@ -54,5 +54,6 @@
54
"scss",
55
"pcss",
56
"postcss"
57
- ]
+ ],
58
+ "typescript.tsdk": "node_modules/typescript/lib"
59
}
packages/vue-primitives/src/toolbar/ToolbarToggleGroup.vue
@@ -7,15 +7,15 @@ defineOptions({
7
name: 'ToolbarToggleGroup',
8
})
9
10
-const props = withDefaults(defineProps<ToolbarToggleGroupProps<T>>(), {
+withDefaults(defineProps<ToolbarToggleGroupProps<T>>(), {
11
loop: true,
12
13
const context = useToolbarContext('ToolbarToggleGroup')
14
</script>
15
16
<template>
17
<ToggleGroupRoot
18
- :type="props.type"
+ :type="type"
19
:loop="loop"
20
:data-orientation="context.orientation()"
21
:dir="context.dir.value"
0 commit comments