[improvement] add constant of border (#4078)

This commit is contained in:
neverland
2019-08-09 14:15:49 +08:00
committed by GitHub
parent 4cba618792
commit 24f5a91cd3
41 changed files with 88 additions and 57 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import { createNamespace } from '../utils';
import { ParentMixin } from '../mixins/relation';
import { BORDER_TOP_BOTTOM } from '../utils/constant';
const [createComponent, bem] = createNamespace('sidebar');
@@ -18,6 +19,6 @@ export default createComponent({
},
render() {
return <div class={[bem(), 'van-hairline--top-bottom']}>{this.slots()}</div>;
return <div class={[bem(), BORDER_TOP_BOTTOM]}>{this.slots()}</div>;
}
});