The vuejs tag has no usage guidance.
1
vote
0answers
13 views
how to force js ignore uncaught error and continue to work?
When run javascript app integrating with some 3rd party library, in some cases , 3rd party lib will lead to bug , for example, following typical error:
Uncaught (in promise) TypeError: Cannot ...
0
votes
0answers
2 views
Communication between separated vuex stores
Imagine invoice. It has products. Each product should have computed property 'total' (quantity * price). Total of invoice is also computed property (sum of all products totals). How could I solve this?...
0
votes
1answer
27 views
VueJs data binding issue
I try to bind attributes and some data to my template but the code below doesn't work. What I need is to render n-amount of templates depends of amount of printedForms objects and implement in each ...
0
votes
1answer
34 views
Initialize VueJs after opening new tab
At the moment I use php to collect data needs to be printed in one pdf and open pdf in new browser tab. The problem is that it generate to much traffic as soon as I've a lot of users and a lot of docs ...
0
votes
0answers
12 views
Turn a prop into a data attribute in vuejs 2
I have a simple component that is rendered by
<House :_people="[{'name': 'Kevin'}, {'name':'Bert'}, {'name': 'Timmy'}]"></House>
And the component looks like
<template>
<div ...