skip to Main Content

Unwanted CSS styles in Vite+Vue page

In the Vite-Vue application I implemented the styles for both index.html and vue components/views , but browser shows them as crossed out. AMany =styles that I added in component/views are also crossed out. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8">…

VIEW QUESTION

Html – How to access v-model value using parameter in VUE

I want to access v-model value using parameter and I try the code below <template> <div v-for="(item, idx) in data"> <input :id="item" :v-model="item"></input> <button @click="submitTest(item)"> testbtn </button> </div> </template> <script setup> var data = {'test1': 'val1', 'test2': 'val2'} function submitTest(itemParam){…

VIEW QUESTION
Back To Top
Search