123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="container">
- <category title="美食">
- <img src="https://s3.ax1x.com/2021/01/16/srJlq0.jpg" alt=""/>
- </category>
- <category title="游戏">
- <ul>
- <li v-for="(g,index) in games" :key="index">{{ g }}</li>
- </ul>
- </category>
- <category title="电影">
- <video controls src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"/>
- </category>
- <!-- controls:是否展示播放按钮 -->
- </div>
- </template>
- <script>
- import Category from './components/Category.vue';
-
- export default {
- name: "App",
- components:{Category},
- data(){
- return{
- foods:['火锅','烧烤','小龙虾','牛排'],
- games:['红色警戒','穿越火线','劲舞团','超级玛丽'],
- films:['《教父》','《拆弹专家》','《你好,李焕英》','《尚硅谷》']
- }
- }
- };
- </script>
- <style>
- .container{
- display: flex;
- justify-content: space-around;
- }
- video{
- width: 100%;
- }
- </style>
|