@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
22 lines • 646 B
JavaScript
/* eslint-disable */
import { View } from '@tarojs/components';
import { Cell } from '@antmjs/vantui';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export default function Demo() {
return /*#__PURE__*/_jsxs(View, {
children: [/*#__PURE__*/_jsx(Cell, {
title: "\u5355\u5143\u683C",
isLink: true
}), /*#__PURE__*/_jsx(Cell, {
title: "\u5355\u5143\u683C",
isLink: true,
value: "\u5185\u5BB9"
}), /*#__PURE__*/_jsx(Cell, {
title: "\u5355\u5143\u683C",
isLink: true,
value: "\u5185\u5BB9",
arrowDirection: "down"
})]
});
}