Welcome to Jonic Developer Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged vue.js

0 votes
719 views
1 answer
    I have an element div with atribute contenteditable="true". This div behaves like an element textarea. <div v-on:keyup.enter="SendMensage" v-html="msg" ... the variable. Does anyone know what can it be? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    In my nuxt component I want to use the ace editor: import Ace from "ace-builds/src-noconflict/ace" when the component is mounted I am doing the following ... in my component now? It is still undefined... See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
530 views
1 answer
    i'm trying to over-ride a certain instance of my VueJS Component, however for some reason the component is still using the default value. The value i'm trying to ... default: '' } } // etc } </script> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
779 views
1 answer
    You can see my code. npm install vue init nuxt/koa my-project ([email protected]) pages |- login.vue <script> export default { name: 'login', method: { login () ... koa), what is the best way to use the Facebook SDK? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
610 views
1 answer
    If I navigate directly to an admin guarded route, http://127.0.0.1:8000/dashboard/, the navigation is always rejected because the state hasn't yet loaded at the time ... : { guard: "isAdmin", }, }, ], }) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
639 views
1 answer
    I am using Vue with vue-router. For product items in a list view I would like to generate JSON-LN annotations with the url attribute set to the path ... -link> to inject the route's path somewhere else? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
653 views
1 answer
    In electronJS, I have created a custom application menu in which I'm sending the event from main process to renderer process, but now what happening is where I'm ... ) => { console.log('clicked') }) }, See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
605 views
1 answer
    After adding Vuex to my project I am unable to access this.$store in any components. The error message is TypeError: _this.$store is undefined I have looked at a bunch of ... ", "vuex": "^3.0.1" }, ... See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
639 views
1 answer
    Scenario I'm changing a themes default and super ugly datepicker and decided to use bootstraps datepicker, found here. The problem im having is that my ' ... v-model isn't working with this datepicker? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
459 views
1 answer
    I had select option repeater. What I want is that when I selected johndoe at the first option, it will no longer display on the second select option. ... the fiddle -> https://jsfiddle.net/0e3csn5y/23/ See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
687 views
1 answer
    I'm new in Vuetify and Vue.js. I try to make v-card layout but failed. Be honest i copy paste this code : https://github.com/ ... of entire module vuetify not allowed due to preventFullImport setting See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
436 views
1 answer
    in my app written with VueJs 2, I have into the Vue.app this code: export default { name: 'app', data () { return { title: 'Gestione ... access the property from another component? Thank you in advance. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
389 views
1 answer
    Like the titles says for itself. Is it possible to build a vue application with the help of webpack and without the vue cli? If not, why? For ... vue-cli uses also webpack to build their files. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
550 views
1 answer
    We are building an enormous website based on Vue and Nuxt with over 25 different page types that cannot be matched with standard /:id or / ... within a route dynamically in the beforeEnter function? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
592 views
1 answer
    TypeError: Object prototype may only be an Object or null: undefined I got some error in my project. I'm using vuejs, typescript and jest. It's just ... } } </script> Here is error logs with picture. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
504 views
1 answer
    Is it possible to edit vuejs's *.vue component files in Visual Studio 2017 with highlighting and intellisense support for HTML, TypeScript AND SCSS? At the ... "./path/to/my-component.scss"></style> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
765 views
1 answer
    I tried to google it a couple of times but got no luck, basically, when the page loads since the password is on autosave the v-text-field doesn't understand it and ... , data: () => ({ }), } </script> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
666 views
1 answer
    I have a relatively simple question. I am trying to implement the widget from this codepen in Nuxt.js. Here's my code, which works fine if I use RAW ... dev-widget > Any idea what I am doing wrong here? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
347 views
1 answer
    I have an input field with the value field being passed a string stored in Vuex. The input fields changes are debounced and the new string synced to Vuex. When ... or if there is a better way to do this. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
935 views
1 answer
    So I was using the guide and codes from https://developers.google.com/identity/sign-in/web/ When I clicked the button, it works fine, it will redirect ... Or there's special way to implement it on Vue? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
648 views
1 answer
    Here is my code: JavaScript let Names = [ { Name: "Josh" FullName: "" }, { Name: "Jonathan" FullName: null }, { Name: "James" FullName: "James Johnson ... , Why? How can I put two condition inside a v-if? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
367 views
1 answer
    I created a component that shows table data for various pages. That component uses b-table inside. Now for a couple pages I want to customize ... be done dynamically via component properties. Please help. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
323 views
1 answer
    I am currently programming some internal abstract class for project and I need it to be generic (I want it to be extendable). I want my class to ... a templated class that allow to have parameters in it. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    How to highlight the selected row in v-data-table? i tried to modified the data by adding flag variable selected in the Example In the above example ... there any other way to highlight a selected row? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
732 views
1 answer
    I want to use a javascript class in may Vue application. My class looks like: class className { constructor() { ... } function1() { ... } ... the class (className.function2()): the function is undefined. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
445 views
1 answer
    I am trying to hot swap chart types based on select box changes. If data needs to be updated, it changes. So for example, on page load I create a ... console.log(config.type); and it returns bar, not line See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
974 views
1 answer
    I'm using the Vuetify Autocomplete with remote data, and I would like to to throttle / debounce the API calls (wait 500 ms to call the API when ... didn't see any Vuetify documentation on this attribute. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
925 views
1 answer
    Change colors I'm trying to use Vue with Nuxt and Vuetify for the styles, on Vuetify exists many templates, one of them brings all. I tried to add colors ... that the last way is the best way for do it. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
Ask a question:
Welcome to Jonic Developer Community for programmer and developer-Open, Learning and Share
...