@bagelink/vue 0.0.460 → 0.0.462
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/index.cjs +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
- package/src/components/Card.vue +2 -2
package/dist/index.cjs
CHANGED
|
@@ -6015,10 +6015,9 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
6015
6015
|
},
|
|
6016
6016
|
setup(__props) {
|
|
6017
6017
|
const props2 = __props;
|
|
6018
|
-
vue.computed(() => props2.to ? "router-link" : "div");
|
|
6018
|
+
const is4 = vue.computed(() => props2.to ? "router-link" : "div");
|
|
6019
6019
|
return (_ctx, _cache) => {
|
|
6020
|
-
|
|
6021
|
-
return vue.openBlock(), vue.createBlock(_component_component, {
|
|
6020
|
+
return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(is4.value), {
|
|
6022
6021
|
to: _ctx.to,
|
|
6023
6022
|
class: vue.normalizeClass(["bgl_card", {
|
|
6024
6023
|
thin: _ctx.thin,
|
package/dist/index.mjs
CHANGED
|
@@ -6013,10 +6013,9 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
6013
6013
|
},
|
|
6014
6014
|
setup(__props) {
|
|
6015
6015
|
const props2 = __props;
|
|
6016
|
-
computed(() => props2.to ? "router-link" : "div");
|
|
6016
|
+
const is4 = computed(() => props2.to ? "router-link" : "div");
|
|
6017
6017
|
return (_ctx, _cache) => {
|
|
6018
|
-
|
|
6019
|
-
return openBlock(), createBlock(_component_component, {
|
|
6018
|
+
return openBlock(), createBlock(resolveDynamicComponent(is4.value), {
|
|
6020
6019
|
to: _ctx.to,
|
|
6021
6020
|
class: normalizeClass(["bgl_card", {
|
|
6022
6021
|
thin: _ctx.thin,
|
package/package.json
CHANGED