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