I setup a nuxt3 project. and I want to use class style components but when I am installing vue-property-decorator, I am getting below error. Can anyone have ide
I have a component that renders text based on the users membership status and I want to change the interpolated text based on that prop value. Is there a more e
When I delete a data from the table, I want it to pop up a warning in the middle of the screen first.Delete function is ready,i just want to add confirm button
I am using Vue 3 with Typescript. I am trying to show a video in the PWA. It works online great but when i try it offline the video is not loading. I store the
I'm new to vue.js, and I have a vue.js component that basically shows numbers from a data array when the button "Add elements" is clicked, the code is the follo
This is my code for a quasar component that I want to mock emits: [ "buyer-protection", ...useDialogPluginComponent.emits ] But I get the following error: Type
I want to display some html, fetched from a database inside of quill editor. The html seems to be fine (displayed in <p> paragraph) and is bound to quill
Ultimately, I am trying to instrument my Vue 3 app so that I can get code coverage that includes my .js and .vue files using the below command: nyc instrument -
I am getting data from db by onMounted hook and showing object in a form. When user clicks to save, I just want to check if object data has changed or not. onMo
I have a list that displays all the songs in all of the artists. I am able to do this by having v-for in a v-for. However, i need the list to show a-z, I am abl
I'm playing around with Vitest and want to wait for the completion of a couple mocked fetches in the onMounted lifecycle hook in my component: My test: import {
I want show only top total datalabels but is dublicate label dataLabels: { enabled: true, offsetY: -20, style: { fontSize: "12px", colo
I'm using the PrimeVue MenuBar component for the Header/NavBar. I wanted to show some text in b/w the menu items. I was just able to add the text, but I need to
I'm trying to make a reactive $store object globally available via plugin but am failing to make it work. store.ts: import {reactive} from "vue"; export defaul
How can I take a value (in this case, an object) outside of the props it was provided in and place it into a reactive variable without affecting the original pr
The reason I ask is that I am trying to serve my nyc instrumented folder when running my tests to gain code coverage. I've been referencing Vue's documentation
I created a custom component library using Vue 3, and after installing it locally thru yarn and registering the components, I kept getting the following error i
I'm trying to understand how can I render a chart dynamically so after I can adapt it so can I send data to it trough MQTT so I can display data in real time. T
As I understand you can not change the props value directly in the child component. But I find out that this will work, I want to know the reason behind it. For
Currently I'm using a reactive store.js like so: import {reactive} from "vue"; const re = reactive({}) export default { re } which then can be used in co