@afeefa/vue-app 0.0.230 → 0.0.231
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.231
|
package/package.json
CHANGED
@@ -1,10 +1,15 @@
|
|
1
1
|
<template>
|
2
2
|
<v-checkbox
|
3
3
|
ref="checkbox"
|
4
|
+
class="a-checkbox"
|
4
5
|
v-bind="$attrs"
|
5
6
|
:inputValue="$attrs.value"
|
6
7
|
@change="$emit('input', $event || false)"
|
7
|
-
|
8
|
+
>
|
9
|
+
<template #label>
|
10
|
+
<slot />
|
11
|
+
</template>
|
12
|
+
</v-checkbox>
|
8
13
|
</template>
|
9
14
|
|
10
15
|
|
@@ -39,5 +44,9 @@ export default class ACheckbox extends Vue {
|
|
39
44
|
.v-input--checkbox {
|
40
45
|
margin: 0;
|
41
46
|
padding: 0;
|
47
|
+
|
48
|
+
::v-deep() .v-input__slot {
|
49
|
+
align-items: flex-start;
|
50
|
+
}
|
42
51
|
}
|
43
52
|
</style>
|