[Improvement] Support Vue.use to register a component (#401)

This commit is contained in:
neverland
2017-12-11 20:41:19 +08:00
committed by GitHub
parent 7dbb5db256
commit 6f2b4c99da
162 changed files with 432 additions and 490 deletions
+3 -7
View File
@@ -19,15 +19,11 @@
</template>
<script>
import Icon from '../icon';
import { create } from '../utils';
export default {
export default create({
name: 'van-coupon-item',
components: {
Icon
},
props: {
data: Object,
chosen: Boolean,
@@ -67,5 +63,5 @@ export default {
return (amount / 100).toFixed(amount % 100 === 0 ? 0 : amount % 10 === 0 ? 1 : 2);
}
}
};
});
</script>
+3 -2
View File
@@ -36,6 +36,7 @@
</template>
<script>
import { create } from '../utils';
import Cell from '../cell';
import CellGroup from '../cell-group';
import CouponItem from './Item';
@@ -43,7 +44,7 @@ import Field from '../field';
import Popup from '../popup';
import VanButton from '../button';
export default {
export default create({
name: 'van-coupon-list',
components: {
@@ -144,5 +145,5 @@ export default {
});
}
}
};
});
</script>