Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
0 votes
0 answers
68 views

When i do npm run serve i get multiple resolve errors: More than 10 messages about can't resolve something of this ('child_process', 'dgram', 'tls') in @vue/cli-shared-utils. My settings: package.json:...
Aleksz Maalmen's user avatar
0 votes
1 answer
27 views

Why does it compile when making small changes to the code while running npm run serve , and is this behavior normal? I would like to know if the server should recompile for every change, even if it ...
haitam maharani's user avatar
1 vote
0 answers
11 views

I would like to be able to tell the webpack bundler to import some file right away if process.env.SOME_VAR evaluates to true and to lazy-load (dynamically import) that file otherwise. Something like ...
vuelicious's user avatar
0 votes
1 answer
217 views

Is it possible in vue cli 3 with typescript to ignore background image urls when compiling scss files? I am writing a SPA which will sit as a page inside a parent site and all the background images ...
Pete's user avatar
  • 58.8k
0 votes
1 answer
446 views

I am experiencing this problem following a tutorial and I can't identify the error in my "MyAccountView.vue" page. I tried changing to re_path and it did not work. Forbidden: /api/v1/token/...
november's user avatar
1 vote
1 answer
142 views

I am experiencing this problem following a tutorial and I can't identify the error in my "SignUpView.vue" page. I tried changing to re_path and it did not work. Not Found: /api/v1/users [...
november's user avatar
1 vote
0 answers
371 views

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 ...
Brian bazo's user avatar
0 votes
1 answer
61 views

When I build with Vue/Cli, can I extract the files I want with the name I want? main.js; import { createApp } from 'vue' import App from './App.vue' import router from './router' import store from './...
Amazon's user avatar
  • 486
0 votes
0 answers
72 views

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 ...
teng liu's user avatar
1 vote
0 answers
258 views

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 ...
Raj Patil's user avatar
0 votes
1 answer
683 views

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 ...
prateeknaik's user avatar
0 votes
1 answer
309 views

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:...
Quattro Zepplin's user avatar
0 votes
1 answer
7k views

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 ...
Emanuel Rodriguez's user avatar
0 votes
1 answer
328 views

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' ...
Joseph1997520's user avatar
1 vote
1 answer
4k views

I am using Vue 3 with class based components and Typescript. If I try to use a component inside another component I get this error: [Vue warn]: Failed to resolve component: Button If this is a native ...
Danny_DD's user avatar
  • 806
2 votes
1 answer
6k views

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 ...
Shashank Bhatt's user avatar
0 votes
1 answer
624 views

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-...
Ammar Hariri's user avatar
0 votes
1 answer
114 views

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 ...
Khaled Altarhoni's user avatar
0 votes
0 answers
293 views

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/...
TheLearningDev's user avatar
0 votes
1 answer
399 views

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 ...
Jan Michael's user avatar
0 votes
1 answer
148 views

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/...
Mustafa Özgün's user avatar
0 votes
1 answer
175 views

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 ...
Steve Jobs's user avatar
1 vote
3 answers
537 views

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 ...
kashfiq's user avatar
  • 43
0 votes
0 answers
870 views

I have a Vue CLI 3 project that used to build and serve just fine. After deleing and reinstalling my node_modules folder. Now, when i run npm run serve, I get the following Error loading C:\code\...
mfr's user avatar
  • 1
1 vote
1 answer
2k views

I have strange error, i don’t know what causing this but last time i develop my project was fine. After no reason my chrome browser lost its cache data (next day). when i run my vue3 project the error ...
Superdiazzz's user avatar
0 votes
1 answer
30 views

The $ Does Not Convert Text To Code What Should I Do? if(this.rules.min && this.value.length < this.rules.min){ return 'Minimum length is ${this.rules.min}' }
Mohammad Khashei's user avatar
1 vote
1 answer
649 views

I'm on my way to create a WordPress theme using Vue.js 3 CLI. The main problem was WP database connection but I've, it seems to be, solved it. Here is an “obvious” problem that I can not solve for 2 ...
Marko Maksym's user avatar
0 votes
1 answer
402 views

this is my first question here so please let me know if you need more info. I am working on a small project using vue CLI 3 and I want to add audio and audio controls but I get the following error: ...
Gabriel Jurado's user avatar
2 votes
0 answers
733 views

My Vue-CLI project is failing to create a production build: ⠏ Building for production... ERROR Failed to compile with 1 errors ...
Steve Bennett's user avatar
2 votes
1 answer
2k views

I’m new into vue js and I’m facing a little issue. I’m sure that its a minor issue as I’m new into it can’t able to solve it by myself. Any suggestion or solution will be acknowledge. Thing is I want ...
Muhammad Khan's user avatar
0 votes
1 answer
284 views

My objective is to be able to build micro apps from within one vue-cli project to have everything in one place. So far I'm building to different dist folders using dynamically created env var, like ...
user1398498's user avatar
0 votes
1 answer
348 views

Some pages of my project use less to render,so I run the npm command to install less and less-loader but find just less can successfully installed,for unknown reason, the less-loader keep falied to ...
Tracker647's user avatar
0 votes
0 answers
108 views

CLI-3 working on my project and currently, I came across these errors, this is my first time using the Vuecli3 and I get this which makes my code not rendering on my screen. error: WARNING in ./src/...
c..'s user avatar
  • 1
0 votes
1 answer
797 views

I'm using bulma with a vue cli 3 project, and I've included the bulma import as follows under index.js import { createApp } from 'vue' import App from './App.vue' import router from './router' require(...
Pablo Gonzalez's user avatar
2 votes
1 answer
3k views

<!DOCTYPE html> <html lang=""> <head> <link rel="icon" href="<%= BASE_URL %>favicon.ico"> <title><%= htmlWebpackPlugin....
Most Wanted's user avatar
  • 7,249
0 votes
1 answer
604 views

I have vue cli project. I want to exclude js files inside spesific folder using exclude rules, but not working. Bundle file still have js code that i want to exclude. I want exclude *.js files inside ...
zenixgrace's user avatar
1 vote
0 answers
4k views

I have been working on this project that tracks every country's COVID-19 stats. I have unfortunately ran into a bit of an obstacle. My code to follow. <template> <div class="...
BlackBat023's user avatar
0 votes
0 answers
223 views

node:14.15.4 npm:6.14.10 electron:11.2.2 in vue.config.js vue.config.js error configureWebpack: { resolve: { extensions: [".js", ".vue", ".json", ".ts"...
Andy's user avatar
  • 1
0 votes
1 answer
1k views

i am new to vue3 and composition apis. there is problem with validating a simple form. i am trying to stop form submission if form is not valid or not touched as it is vaild by default if inputs not ...
Mohamed Fathy's user avatar
0 votes
1 answer
330 views

After installing vue CLI 3 I was unale to vue create my-app throwing this error zsh: command not found: vue But when installing the vue CLI I notice this error: npm WARN deprecated [email protected]: ...
Bala Hantsi's user avatar
1 vote
1 answer
469 views

I have a directory called mock at root which contains mocking data that I use to run the app in development mode. I would like to exclude them when i build for production. I notice that it is being ...
Coffiend's user avatar
3 votes
1 answer
2k views

is possible to use env in vue cli without de prefix VUE_APP, Example in .env without prefix VUE_APP: API_MESSAGE_URL = localhost:5000/v1
John's user avatar
  • 533
0 votes
1 answer
1k views

Summary I am looking for a solution to create an animation across two different router views in Vue. The problem I met is that when the browser change to another router view, it will re-render the ...
Liang's user avatar
  • 165
2 votes
1 answer
523 views

I have a static page that doesn't need JavaScript. I'm using vue-cli 3 and would like to pass the HTML file through webpack for the purpose of minification. However, this doesn't seem to be possible. ...
Indiana Kernick's user avatar
2 votes
2 answers
4k views

When I create a fresh vue-cli project via this command vue create hello-word and this command to install vuetify vue add vuetify Then I saw my git changes like this Two new dependencies have been ...
Joseph's user avatar
  • 4,845
0 votes
1 answer
547 views

I am trying to get popups from the ArcGIS API JS to display using the framework Vue-CLI 3. But even with a simple sample code, I cannot make it work: Here is the code in vanilla JS: <!DOCTYPE html&...
JulienRobitaille's user avatar
1 vote
0 answers
243 views

Trying out vue cli for the first time and I can't get to open the code from the command-prompt line into my visual studio through the cd my-app code ., command, I can only access it through the vue ui ...
David Eire Gonzalez's user avatar
0 votes
1 answer
620 views

Hey is it possible to use bootstrap or vuetify with Vue CLI 4 (Vue3)? I couldn't find any information on the vuetify site (says CLI 3 or higher) neither on the bootstrap site. I tried to install it, ...
TGee's user avatar
  • 41
0 votes
1 answer
248 views

I want to show the schedule, with if condition. If the index in the loop is the same as the index day, then display 'index' else is '-'. for now, this is my view: My code: <td v-for="(n, i) ...
Fenz's user avatar
  • 139
1 vote
1 answer
1k views

I would like Vue CLI's dev server to return a string when a specific URL is fetched. For this, I wanted to use webpack dev-server's bypass option. (webpack docs) I tried this: devServer: { proxy: {...
François Romain's user avatar

1
2 3 4 5
14