12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <div class="container">
- <category title="美食">
- <img slot="center" src="https://s3.ax1x.com/2021/01/16/srJlq0.jpg" alt=""/>
- <a slot="footer" href="www.baidu.com">更多美食</a>
- </category>
- <category title="游戏">
- <ul slot="center">
- <li v-for="(g,index) in games" :key="index">{{ g }}</li>
- </ul>
- <div class="foot" slot="footer">
- <a href="www.baidu.com">单机游戏</a>
- <a href="www.baidu.com">网络游戏</a>
- </div>
- </category>
- <category title="电影">
- <video slot="center" controls src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"/>
- <template v-slot:footer>
- <div class="foot">
- <a href="www.baidu.com">经典</a>
- <a href="www.baidu.com">热门</a>
- <a href="www.baidu.com">推荐</a>
- </div>
- <h4>欢迎前来观看</h4>
- </template>
- </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,.foot{
- display: flex;
- justify-content: space-around;
- }
- video{
- width: 100%;
- }
- h4{
- text-align: center;
- }
- </style>
|