mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
/* istanbul ignore file */
|
|
import Row from './src/Row.vue'
|
|
import Col from './src/Col.vue'
|
|
|
|
const Grid = {
|
|
install: function (Vue) {
|
|
Vue.component(Row.name, Row)
|
|
Vue.component(Col.name, Col)
|
|
}
|
|
}
|
|
|
|
export default Grid
|