All Questions
72 questions
0
votes
0
answers
68
views
How to create a standalone embeddable script from an internal Vue component?
I have a Vue application, and within, I have a component, which I reuse throughout the app. It's located in src/components.
I'd now like to make it so this component can be embedded into other ...
1
vote
0
answers
506
views
Extract image frames from web-cam stream in Vue js
I am using Vue.js to make a web application that records users web-cam footage. I want to send this footage to a backend server with which I am connected to via web socket.
The issue is that I want to ...
0
votes
2
answers
758
views
I am getting errors while installing NuxtJs
I have been trying to install NuxtJs in my system installed and updated npm/npx still getting errors
this is my error log
i successfully installed Nuxt but i am getting erros while launching the app i....
0
votes
1
answer
301
views
Why won't Vue 3 rerender an <img>, even when it rerenders everything else in a component?
I'm working on a Vue project, in which multiple link cards (<a class='card'></a>) are stacked inside a "deck" (<div class='deck'></div>). The setup for these is ...
50
votes
12
answers
59k
views
Property 'XXX' does not exist on type 'CombinedVueInstance<Vue, {}, {}, {}, Readonly<Record<never, any>>>'
I created a vue component with TypeScript, and I'm getting this error in data() and in methods():
Property 'xxx' does not exist on type 'CombinedVueInstance<Vue, {},
{}, {}, Readonly<Record<...
10
votes
7
answers
21k
views
Call parent methods from child components (Vue.js)
I'm doing a project and I need to call parent methods from child components. How can this be accomplished in Vue.js?
35
votes
4
answers
39k
views
Problem to use VueI18n outside a component
I'm trying to use i18n outside a component I've found this solution https://github.com/dkfbasel/vuex-i18n/issues/16 telling to use Vue.i18n.translate('str'), but when I call this occurs an error ...
0
votes
1
answer
200
views
How to make vue js website printer accessible?
I have a website build with vue js and I used a lot of scooped styling for different components.
In many websites separate css files are provides with media="print" to facilitate print version.
How ...
0
votes
0
answers
445
views
Vue.js - pass data to initial Vue and registered components
I cannot pass data from root new Vue.js into registered components
dashboard.jade
extends /base
block dashboard
.dashboard
//- account vue
account
dashboard.js
import Account from '../...
0
votes
0
answers
39
views
Issue in VueJs - isCustomElement
I am having a strange issue in the VueJS project, as when I am adding and trying to use the component from npm.
It shows a warning in the browser console and shows nothing in the output.
For example, ...
53
votes
7
answers
38k
views
(thread_id_key != 0x7777), function find_thread_id_key, file ../src/coroutine.cc, line 134
i'm working on a vue program, i tried npm run serve then i got this:
66% building 670/715 modules 45 active /Users/bytedance/go/src/code.byted.org/ad/omega_fe/node_modules/echarts/lib/chart/graph.js## ...
1
vote
1
answer
66
views
how to Update a 'this' variable in vuejs and set an API result
I want to update my variable nbeBugs but is not accessible inside then function.
My function getApi is async function because the API take time to response
template.vue
<script>
import ...
1
vote
1
answer
1k
views
Conditional Rendering with Vue and Prime Vue Library
I have a diagram that is composed of inputs and outputs. Using Primevue I am rendering a table with data for the inputs or outputs. However inputs and outputs should render different columns (not ...
0
votes
2
answers
639
views
How to emit data in Vue after api call is finished
I have a windows.addEventListener that triggers an API call. I need to pass a name from the api call to the parent component to display it as a title on a dashboard. How can I emit the data to my ...
0
votes
2
answers
569
views
How to re-render after a click Vue
I have a table component that is rendered when a node on my diagram is selected. In my template for the component that is rendering the table I have this:
<div v-if="this.nodeName != ''" ...