demo 原始链接:https://vux.li/demos/v2/#/component/cell-box
\n下面的$t是Demo的i18n使用的翻译函数,一般情况下可以直接使用字符串。另外,下面代码隐藏了i18n标签部分的代码。
\n<template>\n <div>\n <group>\n <cell title=\"cell\" value=\"hello\" is-link></cell>\n <cell-box is-link>\n cell-box long long long long long long long\n </cell-box>\n <cell-box>\n cell-box hello world hello world hello world\n </cell-box>\n <cell title=\"cell\" value=\"hello\" is-link></cell>\n </group>\n </div>\n</template>\n\n<script>\nimport { Group, Cell, CellBox } from 'vux'\n\nexport default {\n components: {\n Group,\n Cell,\n CellBox\n }\n}\n</script>\n
\n