Skip to content

Commit 0c46d3b

Browse files
author
iropolo
committed
refactor slots on combinator
1 parent 8cb7e54 commit 0c46d3b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/combinator/src/components/controls/control_number.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:size="100"
77
@input="e => emit(VALUE_UPDATE_EVENT, e === '' ? undefined : parseInt(e))"
88
>
9-
<template #labelSlot>
9+
<template #label>
1010
<dt-text
1111
kind="label"
1212
:size="100"

packages/combinator/src/components/controls/control_slot.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:size="100"
99
@input="updateValue"
1010
>
11-
<template #labelSlot>
11+
<template #label>
1212
<dt-text
1313
kind="label"
1414
:size="100"

packages/combinator/src/components/controls/control_string.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:size="100"
77
@input="e => emit(VALUE_UPDATE_EVENT, e)"
88
>
9-
<template #labelSlot>
9+
<template #label>
1010
<dt-text
1111
kind="label"
1212
:size="100"

0 commit comments

Comments
 (0)