mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
16 lines
251 B
JavaScript
16 lines
251 B
JavaScript
import { use } from '../utils';
|
|
|
|
const [sfc, bem] = use('goods-action');
|
|
|
|
export default sfc({
|
|
functional: true,
|
|
|
|
render(h, context) {
|
|
return (
|
|
<div class={bem()} {...context.data}>
|
|
{context.children}
|
|
</div>
|
|
);
|
|
}
|
|
});
|