feat(test): layout

This commit is contained in:
eson 2021-03-10 18:28:19 +08:00
parent 55cff6bf36
commit 5d8aa49e14

View File

@ -1,8 +1,31 @@
<template>
<v-container>
<v-card width="100" height="100">
<video controls preload poster :src="src"></video>
<v-card-text> 123 </v-card-text>
</v-card>
<v-spacer></v-spacer>
<div class="text-center">
<v-pagination
v-model="page"
:length="100"
circle
></v-pagination>
</div>
</v-container>
</template>
<script>
@ -13,6 +36,7 @@
name: 'Main',
data: () => ({
src: "http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4",
page: 1,
})
}