@mixd-id/web-scaffold 0.1.240411082 → 0.1.240411084
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/package.json +1 -1
- package/src/index.js +6 -6
- package/src/widgets/StyleSetting.vue +2 -2
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -625,15 +625,15 @@ export default{
|
|
|
625
625
|
app.component('AccountIcon', defineAsyncComponent(() => import("./components/AccountIcon.vue")))
|
|
626
626
|
app.component('CartIcon', defineAsyncComponent(() => import("./components/CartIcon.vue")))
|
|
627
627
|
|
|
628
|
-
app.component('SearchModal', defineAsyncComponent(() => import("./components/SearchModal.vue")))
|
|
629
|
-
app.component('SearchModalSetting', defineAsyncComponent(() => import("./widgets/SearchModalSetting.vue")))
|
|
628
|
+
//app.component('SearchModal', defineAsyncComponent(() => import("./components/SearchModal.vue")))
|
|
629
|
+
//app.component('SearchModalSetting', defineAsyncComponent(() => import("./widgets/SearchModalSetting.vue")))
|
|
630
630
|
|
|
631
631
|
app.component('404', defineAsyncComponent(() => import("./components/404.vue")))
|
|
632
|
-
app.component('Cart', defineAsyncComponent(() => import("./components/Cart.vue")))
|
|
633
|
-
app.component('CartSetting', defineAsyncComponent(() => import("./widgets/CartSetting.vue")))
|
|
632
|
+
//app.component('Cart', defineAsyncComponent(() => import("./components/Cart.vue")))
|
|
633
|
+
//app.component('CartSetting', defineAsyncComponent(() => import("./widgets/CartSetting.vue")))
|
|
634
634
|
|
|
635
|
-
app.component('Checkout', defineAsyncComponent(() => import("./components/Checkout.vue")))
|
|
636
|
-
app.component('CheckoutSetting', defineAsyncComponent(() => import("./widgets/CheckoutSetting.vue")))
|
|
635
|
+
//app.component('Checkout', defineAsyncComponent(() => import("./components/Checkout.vue")))
|
|
636
|
+
//app.component('CheckoutSetting', defineAsyncComponent(() => import("./widgets/CheckoutSetting.vue")))
|
|
637
637
|
app.component('TreeMenu', defineAsyncComponent(() => import("./components/TreeMenu.vue")))
|
|
638
638
|
app.component('MarkdownEdit', defineAsyncComponent(() => import("./components/MarkdownEdit.vue")))
|
|
639
639
|
app.component('MarkdownPreview', defineAsyncComponent(() => import("./components/MarkdownPreview.vue")))
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
|
|
245
245
|
<div class="p-6">
|
|
246
246
|
|
|
247
|
-
<small class="text-text-400">Splash</small>
|
|
247
|
+
<small class="text-text-400" @click="log(item.props)">Splash</small>
|
|
248
248
|
|
|
249
249
|
<div class="mt-1 flex flex-col items-center gap-2">
|
|
250
250
|
<Image ref="splashImg"
|
|
@@ -377,7 +377,7 @@ export default{
|
|
|
377
377
|
reader.readAsText(file);
|
|
378
378
|
}
|
|
379
379
|
else{
|
|
380
|
-
this.item.props.splash = base64
|
|
380
|
+
this.item.props.splash = `<img src="${base64}" height="24px" />`
|
|
381
381
|
}
|
|
382
382
|
},
|
|
383
383
|
|