skip to Main Content

How to import image dynamically with Nuxt+jQuery script

<template> <div> <select ref='select'> <slot></slot> </select> </div> </template> <script> import Vue from "vue" export default { name: "VueSelect", props: ['options', 'value'], mounted: function () { var vm = this; $(this.$refs.select) .select2({ data: this.options, tags: true, theme: "bootstrap", createTag: function (params)…

VIEW QUESTION

Must use import to load ES Module after creating vuestorefront project – SEO

At first, I created a vuestorefront nuxtjs project using the command npx @vue-storefront/cli generate store with Odoo integration After that, I created a .env file BASE_URL=http://localhost:8069/ SITE_URL=http://localhost:3000/ # PUBLIC_PATH=https://xyz.cloudfront.cdn.com # For CI and other deployment scripts NODE_ENV=dev NODE_LOCALE=en-EN PORT=3000 HOST=0.0.0.0…

VIEW QUESTION
Back To Top
Search