naive-ui/packages/common/Grid/index.js

13 lines
228 B
JavaScript
Raw Normal View History

2019-09-20 17:35:54 +08:00
/* istanbul ignore file */
2019-11-28 14:03:12 +08:00
import Row from './src/Row.vue'
2019-09-20 17:35:54 +08:00
import Col from './src/Col.vue'
2019-11-28 14:03:12 +08:00
const Grid = {
install: function (Vue) {
Vue.component(Row.name, Row)
Vue.component(Col.name, Col)
}
2019-09-20 17:35:54 +08:00
}
export default Grid