0👍
Wrap your video tag inside the v-row
; this will take the whole row for video and then the next row for your Select file button.
Here is the example code:
<v-row>
<video id="id" controls="controls">
<source id="src" />
</video>
</v-row>
<v-row>
<v-col class="d-flex justify-center" cols="12">
<v-btn
class="accent-3 blue mb-1 mt-6"
dark
@click="pickFile"
>
Select File
</v-btn>
</v-col>
</v-row>
- [Vuejs]-Laravel VueJS – Input value array returns strings instead of array
- [Vuejs]-How to reuse the vuex module for other components?
Source:stackexchange.com