Welcome to OStack Knowledge Sharing 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
1.1k views
1 answer
    I have two modules in my vuex store. var store = new Vuex.Store({ modules: { loading: loading posts: ... state in another module using commit? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
944 views
1 answer
    I was just setting up a vue project using the webpack template like stated here: http://vuejs-templates.github.io/ ... ) What am I doing wrong? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.5k views
1 answer
    My state in vuex store is huge. Is there a way to reset all the data in state in one go, instead of manually setting everything to null? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
680 views
1 answer
    My Vue component is like this : <template> <div> <div class="panel-group"v-for="item in list"> <div class=" ... , How to do it in vue component? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    Is it possible to dispatch an action between namespaced modules? E.g. I have vuex modules "gameboard" and " ... in the root vuex instance? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    If I try this .$session.get(SessionKeys.Cart) in my component like this : <template> ... </template> <script> ... How can I solve this error? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
850 views
1 answer
    I'm trying to build a custom checkbox component with options that are generated with a v-for loop from an array with ... option.label" /> </div> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
720 views
1 answer
    There are 2 projects generated by vue-cli. one of it I could add component like this code below: Vue.component(' ... this ? Thank you for help . See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.3k views
1 answer
    I try to access router in my typescript class component: import {Vue} from 'vue-property-decorator' import Component ... exist on type 'Login'. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
676 views
1 answer
    I have a small Vue.js component which displays a favorite star icon. Clicking on the icon favorites/unfavorites ... around the issue here. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
830 views
1 answer
    I have added the jquery redactor plugin in a vue component. The plugin is working fine but I need to ... ; HTML <vueredactor></vueredactor> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
902 views
1 answer
    Vue js with parcel bundler cannot load dynamic images <li class="list-group-item" v-for="(element, index) in ... " How we can solve it ? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.5k views
1 answer
    I have a Vue.js project, when I check the console found this issue bellow: Refused to apply style ... based on different frontend framework. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
927 views
1 answer
    I want to pass this prop as a string: <list-view :avatar="pictures"></list-view> But I think Vue thinks I am ... "pictures" ></list-view> </div> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
876 views
1 answer
    $refs!: { helloComponent: Hello } https://github.com/vuejs/vue-class-component/blob/master/example/App.vue See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
795 views
1 answer
    I am not sure why I get a Vue warning when accessing nested object. {{ user.area.name }} [Vue warn]: Error in ... . {{ user.name }} Any advice? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    I am terribly new to Vue, so forgive me if my terminology is off. I have a .NET Core MVC project with ... this.faqCategoryId); } } </script> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.3k views
1 answer
    Is there a way to pass Laravel csrf token to Vue given that the Laravel backend and the Vue frontend are ... then that would be perfect! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    Consider the following composition function: import { computed, ref } from '@vue/composition-api' import { ... to get it right. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
779 views
1 answer
    I've seen many times Vue instance is bind on body tag. Other times this is bind on a div id I'm asking when i should ... Vue({ el: '#a-div' }); See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    <div id="largeArea" v-on:click="do_X"> <button>Button</button> </div> So I have this issue in Vue ... although its a part of the largeArea. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    I'm trying to setup a vue-router on my nginx server. The issue I'm having is that my route doesn't work if I enter ... render: h => h(App) }); See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
967 views
1 answer
    I am using webpack-simple template with following configurations: package.json { "name": "vue-wp-simple", ... component is not being displayed See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.4k views
1 answer
    I have a parent component and a child component. The parent component's template uses a slot so that one or more child ... > </my-parent> </div> See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    I am using vue.js and vuetify. I want to add an icon but it is not working as expected (not rendered). How ... to look like an icon, not code. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
885 views
1 answer
    I want to get the name of the current route of vue-router, i have a component menu with navigation to another ... : Image to show what i want See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.5k views
1 answer
    Just run into this error I hadn't encountered before: "You are binding v-model directly to a v-for iteration ... me. Am I missing something? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
844 views
1 answer
    'Github' asked me to update 'webpack-dev-server' to version 3.1.11 or higher for security reasons. However, 'npm run dev' ... ", "not ie <= 8" ] See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...