Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
84 views

I'm using Chart.js in a Vue 3 application. I have this thing just about wrapped up with how I want it. However, there is this small white gap before the start of the graph as it is drawn that I cannot ...
djneely's user avatar
  • 1,169
0 votes
0 answers
49 views

By all means this should be a simple setup. I have read the docs and there are couple of examples in internet how to do this. But somehow my code doesnt work. Can someone please help me to spot the ...
Mason's user avatar
  • 11
0 votes
0 answers
51 views

I'm working on a Quasar SPA project and running into a persistent issue. I get this error from Vite/Sass: [vite:css] This file is already being loaded. 1 │ @import 'src/css/quasar.variables.scss'; It ...
Redman's user avatar
  • 1
0 votes
0 answers
58 views

In vue2, when other developers have already written a setup and I define another setup in the mixin, an error will occur at this moment. import mixinFile from './mixinFile' export default { nane: '...
jinmokai's user avatar
1 vote
1 answer
395 views

I'm attempting to create a basic Nuxt app using the following: npx nuxi@latest init my-project --packageManager npm --gitInit false --force I'm using npx to automate the setup of the project so I don'...
unclejimbob's user avatar
0 votes
1 answer
103 views

I created a Vue / React / Svelte + Typescript + Vite project using: npm create vite@latest and have the following files in my project: ... tsconfig.app.json tsconfig.json tsconfig.node.json vite....
Claudiu's user avatar
  • 4,184
0 votes
1 answer
59 views

I am updating my project from Vue 2/Nuxt 2 to Vue 3/Nuxt 3. As i've been doing this my tests have broken and i'm trying to resolve them but every way I try to shallowMount my component returns an ...
user2953989's user avatar
  • 3,039
0 votes
0 answers
48 views

I created a sample Vue.js project in Visual Studio 2022. Everything worked fine until I changed default Node.js server to my custom web server. I edited launch.json, added build: {sourcemap: true} to ...
Boris L's user avatar
  • 183
0 votes
1 answer
55 views

I'm trying to add docsList as a Card List but when I fetch single item from locales/en.json, it's return but when I fetch more than 1 items "like repeater" , It's said browser.mjs:48 ssr:...
Mike Frost's user avatar
0 votes
0 answers
25 views

I'm using vue-multiselect in multiple mode and it works great. However, when multiple options are selected, it shows a list of all selected items inside the input area, which can be overwhelming if ...
oguzcan's user avatar
  • 23
0 votes
2 answers
222 views

I have a Single Page Application (SPA) built with Vue.js and deployed to Azure App Service (Linux). This app communicates with a backend .NET Web API, also deployed to Azure App Service. I've ...
devram's user avatar
  • 155
2 votes
1 answer
122 views

I'm building a Vue app that uses R for the back-end. I was able to successfully pull in data from a form into R. I'm using the plumber library. However, I don't know how to parse text. Here is the R ...
Priya Patel's user avatar
0 votes
0 answers
87 views

I'm a new to code vue page. I want to use vue-office-excel component in my Vue page, it can show an excel file on my page. My vue script is like this. index.vue: <template> <vue-office-...
萝莉w's user avatar
  • 346
0 votes
0 answers
60 views

I have a Telegram Web App project on Vue3 with the TON wallet connection (@townsquarelabs/ui-vue) When I clicked on the “Connect Wallet” button, a list of available wallets used to appear and ...
temerep's user avatar
0 votes
0 answers
27 views

const mountFooter = async (currentLanguage = 'zh') => { const wrapper = mount(TheFooter, { global: { plugins: [[I18NextVue, { i18next: testI18n }]], }, }); ...
Weijing Jay Lin's user avatar
0 votes
0 answers
43 views

I have dynamic routes in my router where I load different content depending on the id params, the problem is that as I visit pages without refreshing the page the memory usage starts to increase with ...
user10877669498464651468548513's user avatar
-2 votes
3 answers
69 views

Is this code ok? const { label } = defineProps<{label?: string}>() const labelTransformed = label ? computed(() => { // transform the label }) : 'default label' Then, in the template: <...
gottfried's user avatar
  • 345
0 votes
1 answer
97 views

I have a problem when importing with defineAsyncComponent and using render function Here is parent template <template> <div id="Widget"></div> <button @click=&...
Eagle's user avatar
  • 481
0 votes
0 answers
218 views

I'm getting the following error when running my Nuxt application (version 3.16.0+): [plugin:vite:import-analysis] Failed to resolve import "vuetify/lib/components/VExpansionPanel" from "...
Xaypanya Phongsa's user avatar
1 vote
1 answer
134 views

I have this piece of code with the Galleria component of PrimeVue. <PrimeGalleria @update:visible="onVisible()" :value="images" v-model:visible="isZoomed" :...
violetflare's user avatar
0 votes
2 answers
148 views

I am converting a php website to vue js. I am stuck on how to convert the route helpers (with params) to a vue component. I still need the routes to point to laravel routes. <template> <a ...
paul kendal23's user avatar
-1 votes
1 answer
65 views

I am using Placekit for the forward geocoding and so far it works good, but I have an issue with the autocomplete. When I click on the suggestion from the autocomplete dropdown, it does not use this ...
Han Solo's user avatar
0 votes
0 answers
36 views

I have very strange problem. I have project on Vue 2.7 (Vue-cli), Node 20.11.0. This project works fine without any problem. I created new another project on Vue 3.5/Vite and I upgraded node to 22.15....
Goodie's user avatar
  • 21
1 vote
1 answer
30 views

On Vue-based environment, global products item state is declared to be used in products list component, and other components like navbar for categories dropdown: import axios from "axios"; ...
Mahmoud Tarek Mahmoud's user avatar
-1 votes
1 answer
138 views

I have an AWS CloudFormation stack that sets up a Cognito user pool and user pool app. I created a simple Vue front end and I'm experimenting how to authenticate it using Cognito. I understand I can ...
Garret Wilson's user avatar

1
3 4
5
6 7
2163