Skip to content

Commit f640f59

Browse files
author
el-jacko
authored
Merge pull request #3 from el-jacko/bug-fix
Bug fixes & Vuetify compability
2 parents 3461cac + 45554f9 commit f640f59

File tree

5 files changed

+291
-109
lines changed

5 files changed

+291
-109
lines changed

npm-debug.log.3836475044

Whitespace-only changes.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
"copy-webpack-plugin": "^4.0.1",
3737
"css-loader": "^0.26.1",
3838
"eslint": "^3.14.1",
39+
"eslint-config-airbnb-base": "^11.0.1",
3940
"eslint-friendly-formatter": "^2.0.7",
41+
"eslint-import-resolver-webpack": "^0.8.1",
4042
"eslint-loader": "^1.6.1",
4143
"eslint-plugin-html": "^2.0.0",
42-
"eslint-config-airbnb-base": "^11.0.1",
43-
"eslint-import-resolver-webpack": "^0.8.1",
4444
"eslint-plugin-import": "^2.2.0",
4545
"eventsource-polyfill": "^0.9.6",
4646
"express": "^4.14.1",
@@ -50,17 +50,18 @@
5050
"function-bind": "^1.1.0",
5151
"html-webpack-plugin": "^2.28.0",
5252
"http-proxy-middleware": "^0.17.3",
53-
"webpack-bundle-analyzer": "^2.2.1",
54-
"semver": "^5.3.0",
5553
"opn": "^4.0.2",
5654
"optimize-css-assets-webpack-plugin": "^1.3.0",
5755
"ora": "^1.1.0",
5856
"rimraf": "^2.6.0",
57+
"semver": "^5.3.0",
5958
"url-loader": "^0.5.7",
6059
"vue-loader": "^11.1.4",
6160
"vue-style-loader": "^2.0.0",
6261
"vue-template-compiler": "^2.2.1",
62+
"vuetify": "^0.12.7",
6363
"webpack": "^2.2.1",
64+
"webpack-bundle-analyzer": "^2.2.1",
6465
"webpack-dev-middleware": "^1.10.0",
6566
"webpack-hot-middleware": "^2.16.1",
6667
"webpack-merge": "^2.6.1"

src/App.vue

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div id="app">
33
<meta name="viewport" content="width=device-width">
4-
<vue-editortable :data="{ columns, options }"></vue-editortable>
4+
<vue-editortable :data="{ columns, options, style }"></vue-editortable>
55
</div>
66
</template>
77

@@ -30,7 +30,7 @@
3030
editable: true,
3131
validator: {
3232
rules: [
33-
'ip4',
33+
'alpha',
3434
],
3535
messages: [
3636
'Must be alpha',
@@ -82,7 +82,14 @@
8282
// ],
8383
// },
8484
},
85+
style: 'vuetify',
86+
// style: 'customdark',
8587
};
8688
},
8789
};
8890
</script>
91+
92+
<style>
93+
@import "https://unpkg.com/vuetify/dist/vuetify.min.css";
94+
@import "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons";
95+
</style>

0 commit comments

Comments
 (0)