I have a select box which is getting a value I want my input to get the select box value if that option in selectbox is selected. I mean dynamically changing the input placeholder by which option is selected. sandbox link to my code Answer Try like following snippet (you can create method and find selected option):
Tag: nuxt.js
How do I get database data using firebase/nuxtjs
I don’t know how to get the data via I’ve read the firebase docs but in firebase/nuxtJs different it becomes easier https://firebase.nuxtjs.org/ In firebase docs But when I call onValue, it doesn’t find it nuxt.config.js file Answer Simply simple explanation : in Realtime Database : Whenever the value is changed, the function will run
I want to add two time limit conditions to the timepicker in Vuetify
What we want to achieve Is it possible to add two conditions to allowd-minutes in Vuetify? I have already added a condition to not show the time before now, but I would like to add another condition, I would like to be able to select m minutes only every 15 minutes. Is there a good solution? Code What we tried
Vue-Select is Unable to Create Options from an Array
I am a beginner who is currently learning Vue and Nuxt JS and developing a simple web application with Nuxt JS. Currently, I am trying to make a Vue Select option where I pass an array and I have the options be the elements in the array. This is my current index.vue (TextBox and DropDown are components I have defined):
Is it possible to define an variable as base url on nuxt.js
what I trying to do is define a base url variable for my API which is able to be called everywhere on nuxt app. for example I’m trying to call an image from my API storage like bellow Assuming I can define the variable, so I don’t need to change every img url when the API domain changed. or I
Active events in vue instance encapsulated inside shadowDOM
I’m searching to trigger event from a vue instance which is encapsulated inside a shadowDOM. For the moment, my code create a new Vue instance inside a shadowDOM and print the template without the style (because nuxt load the style inside the base vue instance). I can call methods of each instance But, when i’m trying to add an event
Nuxt How to send async props
I’ve been having trouble with Nuxt2.15 (Vue.js). I want to send the data from parent component to child component that parent components fetched. And, I want to fetch another data from a child component by useing the data from the parent component. But props data is undefined in the child component. I tried to use “watch” and “computed” in the child
Vue js pass a function from child chile to another child component on a click event
I am trying to pass a function when a button is clicked, the button is clicked in a child element, then passed through a parent element to another child component, and i dont want to use the store for that, How can i do that? components/footer/footer.vue — This is where the button is clicked layouts/default.vue –This is the parent component
How to call component, after submit form success?
I have a page with a register form, after submit form and return response success, i need to call another component in the same page, without reload page, how to do this? Method post from form with response: Answer I assume you mean ‘reveal’ the component after response successful? You can try below: Then in js part:
Unable to add Nodes or shapes in Jsplumb community edition
I am using the @jsplumb/browser-ui to create some Nodes within my Nuxtjs/Vuejs application like as mentioned in their documentation. But I would like to create the Nodes at run-time. I am unable to do it. I would like to create the nodes/rectangle shapes whenever the user clicks on the Add Event button. So rather than creating the Nodes static way