diff --git a/index.html b/index.html index 3c8c78f..6b53c3d 100644 --- a/index.html +++ b/index.html @@ -3,17 +3,25 @@ <%= productName %> - - - - - + + + + + - - + + + diff --git a/package-lock.json b/package-lock.json index 6ec5e83..1657675 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,6 +15,7 @@ "qrcode": "^1.5.3", "quasar": "^2.6.0", "vue": "^3.0.0", + "vue-qrcode": "^2.2.0", "vue-router": "^4.0.0" }, "devDependencies": { @@ -5042,8 +5043,7 @@ "node_modules/tslib": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/type-check": { "version": "0.4.0", @@ -5291,6 +5291,21 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/vue-qrcode": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/vue-qrcode/-/vue-qrcode-2.2.0.tgz", + "integrity": "sha512-pEwy/IznxEY5MXptFLaxbGdeDWIJRgU5VhBcFmg1avDjD2z2jjWAGE5dlDwqagXtUjcgkvFSSQ40boog1maLuw==", + "dependencies": { + "tslib": "^2.4.0" + }, + "funding": { + "url": "https://opencollective.com/rxts" + }, + "peerDependencies": { + "qrcode": "^1.5.0", + "vue": "^2.7.0 || ^3.0.0" + } + }, "node_modules/vue-router": { "version": "4.2.5", "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.2.5.tgz", diff --git a/package.json b/package.json index afdba0f..65d9291 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "qrcode": "^1.5.3", "quasar": "^2.6.0", "vue": "^3.0.0", + "vue-qrcode": "^2.2.0", "vue-router": "^4.0.0" }, "devDependencies": { diff --git a/quasar.config.js b/quasar.config.js index ae3b590..bc13d1e 100644 --- a/quasar.config.js +++ b/quasar.config.js @@ -27,7 +27,7 @@ module.exports = configure(function (/* ctx */) { // app boot file (/src/boot) // --> boot files are part of "main.js" // https://v2.quasar.dev/quasar-cli-vite/boot-files - boot: ["axios", "blitzar", "see"], + boot: ["axios", "blitzar"], // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css css: ["app.scss"], @@ -68,7 +68,7 @@ module.exports = configure(function (/* ctx */) { // minify: false, // polyfillModulePreload: true, // distDir - distDir: "../photobooth-app/photobooth/web_spa/", + //distDir: "../photobooth-app/photobooth/web_spa/", // extendViteConf (viteConf) {}, // viteVuePluginOptions: {}, @@ -108,9 +108,9 @@ module.exports = configure(function (/* ctx */) { // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#framework framework: { config: { - notify: { - /* look at QuasarConfOptions from the API card */ - }, + // notify: { + // /* look at QuasarConfOptions from the API card */ + // }, }, // iconSet: 'material-icons', // Quasar icon set @@ -125,7 +125,7 @@ module.exports = configure(function (/* ctx */) { // directives: [], // Quasar plugins - plugins: ["Notify"], + // plugins: ["Notify"], }, // animations: 'all', // --- includes all animations diff --git a/src/stores/index.js b/src/stores/index.js index ca5bee5..6630bd6 100644 --- a/src/stores/index.js +++ b/src/stores/index.js @@ -1,5 +1,5 @@ -import { store } from 'quasar/wrappers' -import { createPinia } from 'pinia' +import { store } from "quasar/wrappers"; +import { createPinia } from "pinia"; /* * If not building with SSR mode, you can @@ -11,10 +11,10 @@ import { createPinia } from 'pinia' */ export default store((/* { ssrContext } */) => { - const pinia = createPinia() + const pinia = createPinia(); // You can add Pinia plugins here // pinia.use(SomePiniaPlugin) - return pinia -}) + return pinia; +});