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.
148 votes
14 answers
198k views

Currently I have to watch a few properties. And if each of them changes, I have to invoke the same function: export default{ // ...... rest of code watch: { propa: function(after,before) { ...
rahulserver's user avatar
  • 11.3k
44 votes
5 answers
75k views

I am trying to integrate vuejs 3 to an existing project which uses webpack. I read about vue-loader, so I am trying to use it. In the official documentation I have this: Every time a new version of ...
Alejo Dev's user avatar
  • 2,656
105 votes
6 answers
160k views

I am passing a props to a component: <template> {{messageId}} // other html code </template> <script> export default { props: ['...
rahulserver's user avatar
  • 11.3k
68 votes
4 answers
179k views

I have App.vue which has a template: <template> <div id="app"> <login v-if="isTokenAvailable()"></login> </div> </...
Manish Patel's user avatar
  • 4,501
2 votes
2 answers
17k views

I try to migrate a large existing codebase from Vue2 to Vue3 using Webpack. So I upgraded the necessary packages in package.json to looks like this (no problems here): "vue": "^3.2.45&...
Reynicke's user avatar
  • 1,588
0 votes
1 answer
299 views

I am currently trying to migrate from Vue2 to Vue3 using migration build. When I try to build the project, the following error occurs: Syntax Error: TypeError: Cannot read properties of undefined (...
Rae's user avatar
  • 15
29 votes
9 answers
53k views

i am new to vue.js, just coming from react.js. the problem i am facing with the vue loader didn't happened at first. but from the second time the app crashes from starting the server. npm run serve &...
Riyad Zaigirdar's user avatar
12 votes
2 answers
15k views

I am trying to use vue-loader with my SPA VUE APP, And I'm getting the following error. ERROR in ./app2.vue Module build failed (from ./node_modules/vue-loader/dist/index.js): TypeError: Cannot ...
daniel's user avatar
  • 199
31 votes
6 answers
24k views

How can I style v-html content with scoped css using vue-loader? Simple example: component.vue <template> <div class="icon" v-html="icon"></icon> </template> <script> ...
KonstantinVlasov's user avatar
8 votes
4 answers
5k views

I work with Vue3 in TS (last vue-cli). I want to get all nodes (vnodes) elements when vue-loader compile .vue file. I need to read nodes attributes and remove all "data-test". I have try in ...
Brice Chaponneau's user avatar
31 votes
2 answers
17k views

What is the difference between <style module> and <style scoped> in Vue? The official documentation (link1, link2) states only that scoped uses PostCSS transformation and module uses CSS ...
Robert Kusznier's user avatar
28 votes
8 answers
40k views

I'm using Vue router with two pages: let routes = [ { path: '/', component: require('./components/HomeView.vue') }, { path: '/intro', component: require('./...
GluePear's user avatar
  • 7,773
0 votes
1 answer
246 views

let paged = new Previewer(); paged.preview('test', \[\], document.body).then((flow) =\> { console.log("Rendered", flow.total, "pages."); }); Facing issue: 1:1188-1197 export '...
Deepak Walia's user avatar
2 votes
1 answer
3k views

I'm using Swiper Element for slide effects in a Vue app, it works fine but I keep getting these two warnings, [Vue warn]: Failed to resolve component: swiper-slide If this is a native custom element, ...
anas ali's user avatar
  • 113
0 votes
1 answer
785 views

I'm working on adding a custom tool to an existing Laravel application using Laravel Nova for the admin panel. The auto generated tool that is created with "php artisan nova:tool vendor/name"...
Koen Dekker's user avatar

15 30 50 per page
1
2 3 4 5
18