nuxt-glorious 1.2.1-2 → 1.2.1-3
Sign up to get free protection for your applications and to get access to all the features.
package/dist/module.json
CHANGED
@@ -29,6 +29,10 @@ const props = defineProps({
|
|
29
29
|
default: "",
|
30
30
|
type: String,
|
31
31
|
},
|
32
|
+
checked: {
|
33
|
+
required: false,
|
34
|
+
type: Boolean,
|
35
|
+
},
|
32
36
|
});
|
33
37
|
|
34
38
|
const emits = defineEmits(["update:modelValue"]);
|
@@ -41,6 +45,7 @@ const emits = defineEmits(["update:modelValue"]);
|
|
41
45
|
type="radio"
|
42
46
|
:disabled="props.disabled"
|
43
47
|
:value="props.value"
|
48
|
+
:checked="props.checked"
|
44
49
|
@input="emits('update:modelValue', $event?.currentTarget.value)"
|
45
50
|
/>
|
46
51
|
<div></div>
|
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "1.2.1-
|
2
|
+
"version": "1.2.1-3",
|
3
3
|
"name": "nuxt-glorious",
|
4
4
|
"description": "This package provides many things needed by a project, including server requests and authentication, SEO and other requirements of a project.",
|
5
5
|
"repository": "sajadhzj/nuxt-glorious",
|