All Questions
57 questions
0
votes
1
answer
71
views
watch changes of nested data in vuejs
I want to watch changes of families variable which contains nested objects
<component-test
v-for="family of familiesToDisplay"
// rest
/>
data: () => ({
families: []...
0
votes
1
answer
48
views
Changing SELECT options in Vue component
I'm using a Vue 2 component to implement a jQuery Chosen SELECT field. It's working OK, except that I need to be able to dynamically change the options list and it's not working as expected.
This ...
0
votes
0
answers
171
views
How to add custom javascript in vue component
Here is the screenshot
I'm not able to make a toggle work as it is written in (jquery-based) javascript. The HTML and CSS is working fine but I'm unable to get the toggle workin as it is related to (...
-1
votes
1
answer
488
views
Vue js and cloned components
I have a form that contain a list of v-select managed by Vue js, all select in my application is managed by this module and other input field are a sample html field.
when i clone the form with jquery ...
-1
votes
1
answer
128
views
How to use Vuejs to replace this jquery code?
I have this code below :
log(n) {
$('#log').append('<div></div>').append(document.createTextNode(n));
},
The jquery function will inject text into the code below :
<div id='log'&...
0
votes
1
answer
3k
views
Save image type on image upload using vue.js
I'm trying to upload image using vue.js that will be multiple images and user can get preview of those images, but i also want to save image type i.e. user can set primary image from groups of images ...
1
vote
1
answer
3k
views
Vue Js infinite loop marquee (horizontal bar)
I need recommendations on how to build an infinite loop marquee from my vue js code, or at least how to use Vue Js and jQuery for this specific project.
My project Fiddle is as follows: https://...
1
vote
5
answers
3k
views
How to set focus on textarea upon opening a component modal
I'm trying to create a post creator like Facebook when you press on the text area it pops up another form with another Textarea I have already done that but the problem here that I can not set focus ...
4
votes
2
answers
16k
views
Vue js - Getting Uncaught ReferenceError: jQuery is not defined
I am new to Vue.js and trying to create a custom component that uses jQuery formBuilder plugin. When I include the component file inside another component, I am getting an error:
Uncaught ...
1
vote
0
answers
380
views
Append Vue component with JQuery after mounting
I am getting vue components from server like this:
Vue.component('events', function(resolve, reject){
template: response.data
})
where response.data is the html from the server
Now i am using ...
0
votes
0
answers
1k
views
How to fade in and out with Vue
I need help with Animations with Vue I have a notification I'm only displaying when there is a message in state(this.$store.state.message), so I have my notification element like this
<!-- This is ...
1
vote
1
answer
2k
views
Vue.js to display flow diagram
I am new to Vue.js library. I would like to display flow of my task ( functional representation).
I have some sets of task running in linux box. I want to display the status of my task in UI thru API ...
1
vote
3
answers
3k
views
Using jQuery plugin in Vue.js single file component
I am trying to use this jQuery plugin in my Vue.js single file component.
as required in the linked autocomplete plugin I imported references in index.html, for them to be available all other vue ...
0
votes
0
answers
155
views
Search and filter the data of an accordian is not working in vuejs
I'm trying to implement a search and filter functionality for an accordion in vuejs.
First I searched properly after the terms "search and filtered data will not be accordion functionality". This is ...
9
votes
4
answers
28k
views
Change Meta Title and Description using Vue.js
Is it possible to change anything higher than the body tag in Vue.Js? The contents for both these elements is currently stored in the JSON file that is attached to an element further down the DOM tree....