Skip to content

Commit acaa336

Browse files
committed
feat: Port Fab and Grid
1 parent 2a9fae2 commit acaa336

File tree

24 files changed

+6245
-13
lines changed

24 files changed

+6245
-13
lines changed

build/webpack.dev.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ module.exports = {
9292
test: /\.svg$/,
9393
loader: 'raw'
9494
},
95+
{
96+
test: /\.json$/,
97+
loader: 'json'
98+
},
9599
{
96100
test: /\.(png|jpe?g|gif)(\?.*)?$/,
97101
loader: 'url',

dev/app.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ router.map({
3232
'/css-elements': { component: require('view/css-elements.vue') },
3333
'/dialog': { component: require('view/dialog.vue') },
3434
'/dropdown': { component: require('view/dropdown.vue') },
35+
'/fab': { component: require('view/fab.vue') },
3536
'/flex': { component: require('view/flex.vue') },
3637
'/form': { component: require('view/form.vue') },
38+
'/grid': { component: require('view/grid.vue') },
3739
'/infinite-scroll': { component: require('view/infinite-scroll.vue') },
3840
'/loading': { component: require('view/loading.vue') },
3941
'/modal': { component: require('view/modal.vue') },

0 commit comments

Comments
 (0)