All Questions
19,070 questions
0
votes
0
answers
31
views
Media recorder API video chunk issue
I have a Vue JS2 app that uses MediaRecorder API for creating a Blob for video.
The basic functionality I have is record a video. user can pause a video and on pause user can delete the last recorded ...
-1
votes
0
answers
39
views
404 on Page Reload with Vue Router History Mode
All right! Here's just the error message text, as you might post it on Stack Overflow – without code blocks:
When I reload a page like http://localhost:8080/dashboard/mitarbeiter, I get this error:
&...
-3
votes
1
answer
55
views
how can i remove percentage from vue url
How do I remove the % from my URL ?
This what my url:
http://localhost:8080/product/We-Vibe%2520Sync%2520O%2520Remote%2520and%2520App%2520Controlled%2520Rechargeable%2520latern's
When I call this
...
-1
votes
1
answer
51
views
how to make the render on vue2 equals to the render on vue3
I have the same code, but if I run it on vue2/vuetify2 the render will be:
If I run it on vue3/vuetify3 I get:
The color is not black anymore, "informativa privacy" is red and the "...
0
votes
1
answer
39
views
How can I set v-data-table height to 100% when it is placed inside a flex container?
I have a component which renders a v-data-table
<!-- UsersDataTable.vue -->
<template>
<div>
<DataTable v-bind="$attrs" :headers="headers" hide-default-...
0
votes
1
answer
35
views
Apexcharts line and area charts only showing tooltips if grid is enabled
I'm using vue-apexcharts wrapper (tried both 1.6.x and 1.7.0 versions) and apexcharts 4.4.0 / 4.5.0 (also tried both versions). I was able to do extensive customizations to chart visuals, but I'm ...
0
votes
1
answer
44
views
cases for using $event as param of a function
I have a basic question related to argument of a function.
when emitting an event from a child to a parent or when triggering a click event, I've seen in somme cases the add of $event as a parameter ...
0
votes
1
answer
40
views
Pass parent component data to slotted child component in vue 2
I am currently working with vue 2 and am finding a way to access parent component prop data within a slotted component
<template>
<div class="grid-container">
<div ...
0
votes
0
answers
37
views
nuxtjs/sitemap fetchContainer.$fetch is not a function
I am generating the sitemap dynamically, using the server/api/sitemap/urls.ts, and locally, when build and running node, the sitemap works as it should, fetching everything from the CMS. The problem ...
0
votes
1
answer
44
views
Typescript tsconfig ignored
I am getting a typescript error that shouldn't happen because the tsconfig should prevent it from being compiled. In my tsconfig file I have skipLibCheck set to true. I have the node_modules folder ...
1
vote
0
answers
57
views
Change to CSS opacity not working in production
I’m using vue 2 and vuetify 2 but I have a little problem using a v-hover component from vuetify, everything is working great except that v-hover only works local and when I try it in production (...
1
vote
1
answer
37
views
Declaring object.prototype in js - VueRouter it automatically calls a method
I declared an extension method for objects by creating my own function. However, I do not call or import it anywhere. As a result, I get an exception. How can I fix this? I don't recall such behavior ...
0
votes
1
answer
51
views
How to format phone number in Japanese format with Vue2 and v-mask
I have a text box in Vue 2 application and I am using the v-mask library to format phone numbers as the user types them.
The problem
I want them to be formatted as per Japanese phone number format ...
1
vote
1
answer
78
views
Computed property lack of reactivity for deep nested object
EDIT01: I'm using "nuxt": "^2.16.0" with "@nuxtjs/composition-api": "^0.29.2".
I'm have been trying for days to figure this out but still dealing with this ...
0
votes
0
answers
25
views
Vuejs HTML2pdf Content Break in mid way
I'm using the vue-html2pdf library to generate PDFs from dynamic data in my Vue.js application. I'm trying to control page breaks within the PDF, especially for a grid layout where each item is ...