add eslint

This commit is contained in:
cookfront 2017-02-10 16:25:28 +08:00
parent 6629dcce59
commit 71a5e0afa5
3 changed files with 16 additions and 16 deletions

View File

@ -16,7 +16,8 @@
"dev": "npm run bootstrap && npm run build:file", "dev": "npm run bootstrap && npm run build:file",
"builddocs": "webpack --progress --hide-modules --config build/webpack.config.js && set NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js", "builddocs": "webpack --progress --hide-modules --config build/webpack.config.js && set NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js",
"docs": "npm run dev && webpack-dev-server --inline --hot --config build/webpack.config.js", "docs": "npm run dev && webpack-dev-server --inline --hot --config build/webpack.config.js",
"clean": "rimraf lib && rimraf packages/*/lib" "clean": "rimraf lib && rimraf packages/*/lib",
"lint": "eslint src/**/*.js packages/**/*.{js,vue} --quiet"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -50,7 +51,7 @@
"cp-cli": "^1.0.2", "cp-cli": "^1.0.2",
"cross-env": "^3.1.3", "cross-env": "^3.1.3",
"css-loader": "^0.24.0", "css-loader": "^0.24.0",
"eslint": "^3.10.2", "eslint": "^3.15.0",
"eslint-config-standard": "^5.1.0", "eslint-config-standard": "^5.1.0",
"eslint-friendly-formatter": "^2.0.5", "eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0", "eslint-loader": "^1.3.0",

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="o2-switch" :class="['is-' + switchState]" @click="toggleState"> <div class="o2-switch" :class="['is-' + switchState]" @click="toggleState">
<div class="o2-switch-node"></div> <div class="o2-switch-node"></div>
</div> </div>
</template> </template>
<script> <script>
@ -17,8 +17,7 @@
* @example * @example
* <o2-switch checked="true" disabled="false"></o2-switch> * <o2-switch checked="true" disabled="false"></o2-switch>
*/ */
export default export default {
{
name: 'o2-switch', name: 'o2-switch',
props: { props: {
checked: { checked: {
@ -41,13 +40,13 @@ export default
computed: { computed: {
switchState: function() { switchState: function() {
if (this.disabled) { if (this.disabled) {
return 'disabled'; return 'disabled';
} else if (this.loading) { } else if (this.loading) {
return 'loading'; return 'loading';
} else if (this.checked) { } else if (this.checked) {
return 'on'; return 'on';
} else { } else {
return 'off'; return 'off';
} }
} }
}, },
@ -56,12 +55,12 @@ export default
* 开关状态交互 * 开关状态交互
*/ */
toggleState: function() { toggleState: function() {
if(this.disabled || this.loading) return; if (this.disabled || this.loading) return;
this.onChange(!this.checked); this.onChange(!this.checked);
}, },
/* /*
* *
*/ */
getState: function() { getState: function() {
return this.checked; return this.checked;

View File

@ -1,6 +1,6 @@
import Sample from '../packages/sample'; import Sample from '../packages/sample/index.js';
import Button from '../packages/button'; import Button from '../packages/button/index.js';
import Switch from '../packages/switch'; import Switch from '../packages/switch/index.js';
// zenui // zenui
import '../packages/zenui/src/index.pcss'; import '../packages/zenui/src/index.pcss';