All Questions
501 questions
1
vote
0
answers
364
views
ValidationError: Progress Plugin Invalid Options when compiling vue project
I am getting a nugging error message when trying to complile my vue project. This is the error message
ValidationError: Progress Plugin Invalid Options
options should NOT have additional ...
0
votes
0
answers
69
views
How to continue processing css files after the css-loader of vue-cli?
In the vue-cli webpack chain, I want to change the compiled css source code. For example, I need to change the url reference suffix of png in all the background in the css file to webp. I write a ...
1
vote
0
answers
236
views
allow optional chaining in vue by correct configuration of babel
I have vue project and i have installed few packages. When I do npm run dev it throws error for adding appropriate loader.
It seems like packages I have installed have `optional-chaining code and ...
0
votes
1
answer
643
views
"vue running in developer mode" warning appears even when running in production mode
I am running vue in production mode but i still get the warning of vue running in developer mode
the project is running fine and i can see that it running in production mode. but i am still getting ...
0
votes
1
answer
301
views
vue3-electron production build facing webpackJsonp not defined problem
I'm trying to build an electron app from a vue-cli3 project. The vue project itself works fine both in development and production. Everything works as well if I run a dev mode with npm run electron:...
0
votes
1
answer
7k
views
TypeError: Cannot set properties of undefined (setting 'message') in Vue
i'm new in Vue.js, so there are concepts that maybe i'm missing.
The thing is that i've been trying to do this for months, but i couldn't get a solution. What i'm trying to do is change the message of ...
0
votes
1
answer
324
views
How to use component with global register in Vue Cli3
This is my folder
+src
+components
+Logo.vue
App.vue
main.js
In my main.js I had been import the file
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
...
2
votes
1
answer
6k
views
vue js import from node_modules
I am new to vue js and currently trying to import any vue plugin/component into other sfc .vue files for usage.
Currently I am using VS code with vue create project cli setup and in my main App.vue ...
0
votes
1
answer
617
views
cannot found file of fonts in vue
aim using vue cli 3,and
i have file inside of
iam writng my code in fonts.scss file and iam write like this
@font-face {
font-family: 'ElMessiri';
src: url('./fonts/ElMessiri/ElMessiri-...
0
votes
1
answer
114
views
How to update or show data of array in vue-cli
I have created a table which display the product data that was entered by the user and I have placed a column for operations, delete, modify, and details,
but what i don't know is how can I edit or ...
0
votes
0
answers
290
views
Vue - Webpack - Force scss @import to be chunked in to a shared file?
I'm currently experiencing a pattern where in Vue I have this in a number of different components. What I'm finding is that webpack is then going ahead and including the contents of src/assets/styles/...
0
votes
1
answer
391
views
Vue Cli 3 Npm Run Build Error: Callback was already called
Everything works fine until this error shows out. I can run npm run serve with no problem except npm run build.
Here's the error log
0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli ...
0
votes
1
answer
146
views
I want to change visible button when array change on Vue.js
I want to toggle visible button when array changed. But I can't do it.What is the best way to do this?
Here is my example.
https://codesandbox.io/s/relaxed-poincare-vv6xh?file=/src/components/...
0
votes
1
answer
172
views
It is not clear which version of vue.js is being used
I installed npm install -g @vue/cli
After installation, I create a project vue create hello-world
After creating the project, I run the following command: npm list vue Returns `-- [email protected]. This ...
1
vote
3
answers
532
views
Data not rendered in image tag in vue js
Here I am trying to show image from data object in vue js. Here is my code
<a onclick="openModal()"><img src="{{product.productImageList[0]['name']}}"></a>
But ...