[improvement] GoodsAction: jsx (#2513)

This commit is contained in:
neverland
2019-01-13 08:38:30 +08:00
committed by GitHub
parent 31da78eae6
commit b52a37220f
7 changed files with 90 additions and 105 deletions
+9
View File
@@ -0,0 +1,9 @@
import { use } from '../utils';
const [sfc, bem] = use('goods-action');
export default sfc({
render(h) {
return <div class={bem()}>{this.$slots.default}</div>;
}
});