@fastkit/vui 0.19.0 → 0.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vui.mjs +2 -2
- package/dist/vui.mjs.map +1 -1
- package/package.json +35 -26
- package/src/components/VCard/VCard.tsx +2 -2
package/dist/vui.mjs
CHANGED
|
@@ -1427,12 +1427,12 @@ var VCard = defineComponent({
|
|
|
1427
1427
|
setup(props12, ctx) {
|
|
1428
1428
|
const _props = computed(() => props12);
|
|
1429
1429
|
const data = computed(() => {
|
|
1430
|
-
const hasLink = !!ctx.attrs.href || !!ctx.attrs.to;
|
|
1431
1430
|
const attrs = {
|
|
1432
1431
|
..._props.value,
|
|
1433
1432
|
...ctx.attrs,
|
|
1434
1433
|
class: ["v-card", ctx.attrs.class],
|
|
1435
|
-
tag:
|
|
1434
|
+
tag: VAction,
|
|
1435
|
+
linkFallbackTag: "div"
|
|
1436
1436
|
};
|
|
1437
1437
|
if (props12.disabled) {
|
|
1438
1438
|
attrs.disabled = "disabled";
|