File tree 1 file changed +5
-26
lines changed
src/client/components/systems/fate
1 file changed +5
-26
lines changed Original file line number Diff line number Diff line change 23
23
class="me-1"
24
24
:value="true"
25
25
:disabled="stressBox > totalPhysicalBoxes"
26
- @input ="onSave"
26
+ @update:model-value ="onSave"
27
27
>
28
28
<b>{{ stressBox }}</b>
29
29
</BFormCheckbox>
47
47
class="me-1"
48
48
:value="true"
49
49
:disabled="stressBox > totalMentalBoxes"
50
- @input ="onSave"
50
+ @update:model-value ="onSave"
51
51
>
52
52
<b>{{ stressBox }}</b>
53
53
</BFormCheckbox>
63
63
<style lang="scss" scoped>
64
64
#fate-stress {
65
65
min-width: 245px;
66
-
67
- //.stress-table {
68
- // border: none;
69
- //
70
- // tr {
71
- // border-top: none;
72
- // border-bottom: none;
73
- //
74
- // td:first-child {
75
- // border-left: none;
76
- // }
77
- //
78
- // td:last-child {
79
- // border-right: none;
80
- // }
81
- //
82
- // td {
83
- // border-bottom: none;
84
- // }
85
- // }
86
- //}
87
66
}
88
67
</style>
89
68
113
92
const props = defineProps<Props>();
114
93
115
94
const emit = defineEmits<{
116
- 'update:physical' : ( val : FateStress) => void ;
117
- 'update:mental' : ( val : FateStress) => void ;
118
- 'save' : () => void ;
95
+ 'update:physical' : [ val : FateStress] ;
96
+ 'update:mental' : [ val : FateStress] ;
97
+ 'save' : [] ;
119
98
}>();
120
99
121
100
//------------------------------------------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments