demo 原始链接:https://vux.li/demos/v2/#/component/panel
\n下面的$t是Demo的i18n使用的翻译函数,一般情况下可以直接使用字符串。另外,下面代码隐藏了i18n标签部分的代码。
\n<template>\n <div>\n <group :title=\"$t('Switch the type')\">\n <radio title=\"type\" v-model=\"type\" :options=\"['1', '2', '3', '4', '5']\"></radio>\n </group>\n <panel :header=\"$t('List of content with image')\" :footer=\"footer\" :list=\"list\" :type=\"type\" @on-img-error=\"onImgError\"></panel>\n </div>\n</template>\n\n\n\n<script>\nimport { Panel, Group, Radio } from 'vux'\n\nexport default {\n components: {\n Panel,\n Group,\n Radio\n },\n methods: {\n onImgError (item, $event) {\n console.log(item, $event)\n }\n },\n data () {\n return {\n type: '1',\n list: [{\n src: 'http://somedomain.somdomain/x.jpg',\n fallbackSrc: 'http://placeholder.qiniudn.com/60x60/3cc51f/ffffff',\n title: '标题一',\n desc: '由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状,有自己的运行轨道。',\n url: '/component/cell'\n }, {\n src: 'http://placeholder.qiniudn.com/60x60/3cc51f/ffffff',\n title: '标题二',\n desc: '由各种物质组成的巨型球状天体,叫做星球。星球有一定的形状,有自己的运行轨道。',\n url: {\n path: '/component/radio',\n replace: false\n },\n meta: {\n source: '来源信息',\n date: '时间',\n other: '其他信息'\n }\n }],\n footer: {\n title: this.$t('more'),\n url: 'http://vux.li'\n }\n }\n }\n}\n</script>\n\n
\n