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)…