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

Laravel – Inertia VueJS triggering the input file click event from a separate button

I am trying to trigger an event from button to input file. Below is the code <template> <div> <PrimaryButton type="button" :for="props.videoId" :disabled="uploading" @click="selectVideo" > Upload </PrimaryButton> <input :hidden="true" :ref="videoInput" :id="props.videoId" type="file" @change="handleVideoLoad" // for emits :disabled="uploading" /> </div> </template> <script…

VIEW QUESTION
Back To Top
Search