diff --git a/src/views/catalog.vue b/src/views/catalog.vue index f487850b..bf5c30e5 100644 --- a/src/views/catalog.vue +++ b/src/views/catalog.vue @@ -13,7 +13,11 @@
- + @@ -101,7 +105,6 @@ import { IonLabel, IonMenuButton, IonPage, - IonSearchbar, IonThumbnail, IonTitle, IonToolbar, @@ -132,10 +135,9 @@ export default defineComponent({ IonLabel, IonMenuButton, IonPage, - IonSearchbar, IonThumbnail, IonTitle, - IonToolbar, + IonToolbar }, data() { return { diff --git a/src/views/orders.vue b/src/views/orders.vue index 4ca5f023..275941bd 100644 --- a/src/views/orders.vue +++ b/src/views/orders.vue @@ -21,7 +21,12 @@
@@ -191,7 +196,6 @@ import { IonPage, IonSelect, IonSelectOption, - IonSearchbar, IonThumbnail, IonTitle, IonToggle, @@ -248,7 +252,6 @@ export default defineComponent({ IonPage, IonSelect, IonSelectOption, - IonSearchbar, IonThumbnail, IonTitle, IonToggle, diff --git a/src/views/products.vue b/src/views/products.vue index d45fb701..ad77a9b1 100644 --- a/src/views/products.vue +++ b/src/views/products.vue @@ -15,7 +15,12 @@ - +
@@ -62,7 +67,6 @@ import { IonPage, IonThumbnail, IonTitle, - IonSearchbar, IonToolbar, modalController, } from "@ionic/vue"; @@ -91,7 +95,6 @@ export default defineComponent({ IonPage, IonThumbnail, IonTitle, - IonSearchbar, IonToolbar, ShopifyImg }, diff --git a/src/views/warehouse-modal.vue b/src/views/warehouse-modal.vue index 83927274..07775d8e 100644 --- a/src/views/warehouse-modal.vue +++ b/src/views/warehouse-modal.vue @@ -9,7 +9,12 @@ {{ $t("Release preorder to a warehouse") }} - + @@ -53,7 +58,6 @@ import { IonRadioGroup, IonRadio, IonList, - IonSearchbar, IonTitle, IonToolbar, modalController, @@ -231,7 +235,6 @@ export default defineComponent({ IonList, IonRadioGroup, IonRadio, - IonSearchbar, IonTitle, IonToolbar }, diff --git a/vue.config.js b/vue.config.js index 79984780..c1c262f8 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,12 +1,21 @@ +const path = require('path') require("@hotwax/app-version-info") module.exports = { - pluginOptions: { - i18n: { - locale: 'en', - fallbackLocale: 'en', - localeDir: 'locales', - enableInSFC: true + pluginOptions: { + i18n: { + locale: 'en', + fallbackLocale: 'en', + localeDir: 'locales', + enableInSFC: true + } + }, + configureWebpack: { + resolve: { + alias: { + vue: path.resolve('./node_modules/vue') } - }, - runtimeCompiler: true - } \ No newline at end of file + } + }, + runtimeCompiler: true, + transpileDependencies: ['@hotwax/dxp-components'] +} \ No newline at end of file