mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix dev
This commit is contained in:
parent
1ce906d7bb
commit
5c085f2fb7
3
.babelrc
3
.babelrc
@ -3,6 +3,7 @@
|
||||
"es2015"
|
||||
],
|
||||
"plugins": [
|
||||
"transform-runtime",
|
||||
"transform-vue-jsx"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -18,9 +18,9 @@ const install = function(Vue) {
|
||||
// auto install
|
||||
if (typeof window !== 'undefined' && window.Vue) {
|
||||
install(window.Vue);
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
export default {
|
||||
install,
|
||||
version: '{{version}}',
|
||||
{{list}}
|
||||
|
@ -26,7 +26,7 @@ export default {
|
||||
|
||||
.page-container {
|
||||
height: 100%;
|
||||
min-width: 960px;
|
||||
overflow: scroll;
|
||||
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
|
998
docs/build/0.js
vendored
998
docs/build/0.js
vendored
@ -1,998 +0,0 @@
|
||||
webpackJsonp([0],{
|
||||
|
||||
/***/ 212:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var map = {
|
||||
"./examples/button.md": 225,
|
||||
"./examples/sample.md": 226,
|
||||
"./examples/switch.md": 227
|
||||
};
|
||||
function webpackContext(req) {
|
||||
return __webpack_require__(webpackContextResolve(req));
|
||||
};
|
||||
function webpackContextResolve(req) {
|
||||
var id = map[req];
|
||||
if(!(id + 1)) // check for number
|
||||
throw new Error("Cannot find module '" + req + "'.");
|
||||
return id;
|
||||
};
|
||||
webpackContext.keys = function webpackContextKeys() {
|
||||
return Object.keys(map);
|
||||
};
|
||||
webpackContext.resolve = webpackContextResolve;
|
||||
module.exports = webpackContext;
|
||||
webpackContext.id = 212;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 213:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
exports.default = {
|
||||
data: function data() {
|
||||
return {
|
||||
author: 'pangxie'
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 214:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
exports.default = {
|
||||
data: function data() {
|
||||
return {
|
||||
switchState: true
|
||||
};
|
||||
},
|
||||
|
||||
computed: {
|
||||
switchStateText: function switchStateText() {
|
||||
return this.switchState ? 'ON' : 'OFF';
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
updateState: function updateState(newState) {
|
||||
console.log('changing');
|
||||
this.switchState = newState;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 215:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
exports = module.exports = __webpack_require__(4)();
|
||||
// imports
|
||||
|
||||
|
||||
// module
|
||||
exports.push([module.i, ".page-button{padding:0 15px 15px}.page-button-group,.page-button-group>*{margin-bottom:15px}", ""]);
|
||||
|
||||
// exports
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 216:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
exports = module.exports = __webpack_require__(4)();
|
||||
// imports
|
||||
|
||||
|
||||
// module
|
||||
exports.push([module.i, ".page-switch{padding:0 15px 15px}.page-switch-sample{margin:0 15px}.page-switch-text{margin-right:20px}", ""]);
|
||||
|
||||
// exports
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 217:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
|
||||
/* styles */
|
||||
__webpack_require__(223)
|
||||
|
||||
var Component = __webpack_require__(3)(
|
||||
/* script */
|
||||
null,
|
||||
/* template */
|
||||
__webpack_require__(221),
|
||||
/* scopeId */
|
||||
null,
|
||||
/* cssModules */
|
||||
null
|
||||
)
|
||||
|
||||
module.exports = Component.exports
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 218:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var Component = __webpack_require__(3)(
|
||||
/* script */
|
||||
__webpack_require__(213),
|
||||
/* template */
|
||||
__webpack_require__(220),
|
||||
/* scopeId */
|
||||
null,
|
||||
/* cssModules */
|
||||
null
|
||||
)
|
||||
|
||||
module.exports = Component.exports
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 219:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
|
||||
/* styles */
|
||||
__webpack_require__(224)
|
||||
|
||||
var Component = __webpack_require__(3)(
|
||||
/* script */
|
||||
__webpack_require__(214),
|
||||
/* template */
|
||||
__webpack_require__(222),
|
||||
/* scopeId */
|
||||
null,
|
||||
/* cssModules */
|
||||
null
|
||||
)
|
||||
|
||||
module.exports = Component.exports
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 220:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('section', [_vm._m(0), _vm._v(" "), _vm._m(1), _vm._v(" "), _c('p', [_vm._v("author设置为test")]), _vm._v(" "), _c('demo-block', {
|
||||
staticClass: "demo-box"
|
||||
}, [_c('div', {
|
||||
staticClass: "source",
|
||||
slot: "source"
|
||||
}, [_c('sample', {
|
||||
attrs: {
|
||||
"author": _vm.author
|
||||
}
|
||||
})], 1), _vm._v(" "), _c('p', [_vm._v("样例代码")]), _vm._v(" "), _c('div', {
|
||||
staticClass: "highlight",
|
||||
slot: "highlight"
|
||||
}, [_c('pre', [_c('code', {
|
||||
staticClass: "hljs language-html"
|
||||
}, [_c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("sample")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v(":author")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"author\"")]), _vm._v(">")]), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("sample")]), _vm._v(">")]), _vm._v("\n")])])])]), _vm._v(" "), _vm._m(2), _vm._v(" "), _vm._m(3)], 1)
|
||||
},staticRenderFns: [function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h2', {
|
||||
attrs: {
|
||||
"id": "sample-zu-jian"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#sample-zu-jian",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" sample组件")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "ji-chu-yong-fa"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#ji-chu-yong-fa",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" 基础用法")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "api"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#api",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" API")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('table', {
|
||||
staticClass: "table"
|
||||
}, [_c('thead', [_c('tr', [_c('th', [_vm._v("参数")]), _vm._v(" "), _c('th', [_vm._v("说明")]), _vm._v(" "), _c('th', [_vm._v("类型")]), _vm._v(" "), _c('th', [_vm._v("默认值")]), _vm._v(" "), _c('th', [_vm._v("可选值")])])]), _vm._v(" "), _c('tbody', [_c('tr', [_c('td', [_vm._v("className")]), _vm._v(" "), _c('td', [_vm._v("自定义额外类名")]), _vm._v(" "), _c('td', [_vm._v("string")]), _vm._v(" "), _c('td', [_vm._v("''")]), _vm._v(" "), _c('td', [_vm._v("''")])])])])
|
||||
}]}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 221:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('section', [_vm._m(0), _vm._v(" "), _vm._m(1), _vm._v(" "), _c('demo-block', {
|
||||
staticClass: "demo-box"
|
||||
}, [_c('div', {
|
||||
staticClass: "source",
|
||||
slot: "source"
|
||||
}, [_c('div', {
|
||||
staticClass: "page-button"
|
||||
}, [_c('h1', {
|
||||
staticClass: "page-title"
|
||||
}, [_vm._v("Button")]), _vm._v(" "), _c('div', {
|
||||
staticClass: "page-button-group"
|
||||
}, [_c('z-button', {
|
||||
attrs: {
|
||||
"size": "large"
|
||||
}
|
||||
}, [_vm._v("default")]), _vm._v(" "), _c('z-button', {
|
||||
attrs: {
|
||||
"size": "large",
|
||||
"type": "primary"
|
||||
}
|
||||
}, [_vm._v("primary")]), _vm._v(" "), _c('z-button', {
|
||||
attrs: {
|
||||
"size": "large",
|
||||
"type": "danger"
|
||||
}
|
||||
}, [_vm._v("danger")])], 1), _vm._v(" "), _c('div', {
|
||||
staticClass: "page-button-group"
|
||||
}, [_c('z-button', [_vm._v("default")]), _vm._v(" "), _c('z-button', {
|
||||
attrs: {
|
||||
"type": "primary"
|
||||
}
|
||||
}, [_vm._v("primary")]), _vm._v(" "), _c('z-button', {
|
||||
attrs: {
|
||||
"type": "danger"
|
||||
}
|
||||
}, [_vm._v("danger")])], 1), _vm._v(" "), _c('div', {
|
||||
staticClass: "page-button-group"
|
||||
}, [_c('z-button', {
|
||||
attrs: {
|
||||
"size": "small"
|
||||
}
|
||||
}, [_vm._v("default")]), _vm._v(" "), _c('z-button', {
|
||||
attrs: {
|
||||
"size": "small",
|
||||
"type": "primary"
|
||||
}
|
||||
}, [_vm._v("primary")]), _vm._v(" "), _c('z-button', {
|
||||
attrs: {
|
||||
"size": "small",
|
||||
"type": "danger"
|
||||
}
|
||||
}, [_vm._v("danger")])], 1), _vm._v(" "), _c('div', {
|
||||
staticClass: "page-button-group"
|
||||
}, [_c('z-button', {
|
||||
attrs: {
|
||||
"disabled": "",
|
||||
"size": "large"
|
||||
}
|
||||
}, [_vm._v("default")]), _vm._v(" "), _c('z-button', {
|
||||
attrs: {
|
||||
"disabled": "",
|
||||
"size": "large",
|
||||
"type": "primary"
|
||||
}
|
||||
}, [_vm._v("primary")]), _vm._v(" "), _c('z-button', {
|
||||
staticClass: "aaa",
|
||||
attrs: {
|
||||
"disabled": "",
|
||||
"size": "large",
|
||||
"type": "danger"
|
||||
}
|
||||
}, [_vm._v("danger")])], 1)])]), _vm._v(" "), _c('p', [_vm._v("样例代码")]), _vm._v(" "), _c('div', {
|
||||
staticClass: "highlight",
|
||||
slot: "highlight"
|
||||
}, [_c('pre', [_c('code', {
|
||||
staticClass: "hljs language-html"
|
||||
}, [_c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-button\"")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("h1")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-title\"")]), _vm._v(">")]), _vm._v("Button"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("h1")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-button-group\"")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"large\"")]), _vm._v(">")]), _vm._v("default"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"large\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"primary\"")]), _vm._v(">")]), _vm._v("primary"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"large\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"danger\"")]), _vm._v(">")]), _vm._v("danger"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(">")]), _vm._v("\n\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-button-group\"")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("default"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"primary\"")]), _vm._v(">")]), _vm._v("primary"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"danger\"")]), _vm._v(">")]), _vm._v("danger"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(">")]), _vm._v("\n\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-button-group\"")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"small\"")]), _vm._v(">")]), _vm._v("default"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"small\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"primary\"")]), _vm._v(">")]), _vm._v("primary"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"small\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"danger\"")]), _vm._v(">")]), _vm._v("danger"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(">")]), _vm._v("\n\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-button-group\"")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("disabled")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"large\"")]), _vm._v(">")]), _vm._v("default"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("disabled")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"large\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"primary\"")]), _vm._v(">")]), _vm._v("primary"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("disabled")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("size")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"large\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("type")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"danger\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"aaa\"")]), _vm._v(">")]), _vm._v("danger"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-button")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(">")]), _vm._v("\n"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(">")]), _vm._v("\n")])])])]), _vm._v(" "), _vm._m(2), _vm._v(" "), _vm._m(3)], 1)
|
||||
},staticRenderFns: [function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h2', {
|
||||
attrs: {
|
||||
"id": "button-zu-jian"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#button-zu-jian",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" Button组件")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "ji-chu-yong-fa"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#ji-chu-yong-fa",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" 基础用法")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "api"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#api",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" API")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('table', {
|
||||
staticClass: "table"
|
||||
}, [_c('thead', [_c('tr', [_c('th', [_vm._v("参数")]), _vm._v(" "), _c('th', [_vm._v("说明")]), _vm._v(" "), _c('th', [_vm._v("类型")]), _vm._v(" "), _c('th', [_vm._v("默认值")]), _vm._v(" "), _c('th', [_vm._v("可选值")])])]), _vm._v(" "), _c('tbody', [_c('tr', [_c('td', [_vm._v("className")]), _vm._v(" "), _c('td', [_vm._v("自定义额外类名")]), _vm._v(" "), _c('td', [_vm._v("string")]), _vm._v(" "), _c('td', [_vm._v("''")]), _vm._v(" "), _c('td', [_vm._v("''")])])])])
|
||||
}]}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 222:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('section', [_vm._m(0), _vm._v(" "), _vm._m(1), _vm._v(" "), _c('demo-block', {
|
||||
staticClass: "demo-box"
|
||||
}, [_c('div', {
|
||||
staticClass: "source",
|
||||
slot: "source"
|
||||
}, [_c('div', {
|
||||
staticClass: "page-switch"
|
||||
}, [_c('span', {
|
||||
staticClass: "page-switch-text"
|
||||
}, [_vm._v("Switch state: " + _vm._s(_vm.switchStateText))]), _vm._v(" "), _c('z-switch', {
|
||||
staticClass: "page-switch-sample",
|
||||
attrs: {
|
||||
"checked": _vm.switchState,
|
||||
"onchange": _vm.updateState
|
||||
}
|
||||
}), _vm._v(" "), _c('z-switch', {
|
||||
staticClass: "page-switch-sample",
|
||||
attrs: {
|
||||
"checked": false,
|
||||
"disabled": true
|
||||
}
|
||||
})], 1)]), _vm._v(" "), _c('p', [_vm._v("样例代码")]), _vm._v(" "), _c('div', {
|
||||
staticClass: "highlight",
|
||||
slot: "highlight"
|
||||
}, [_c('pre', [_c('code', {
|
||||
staticClass: "hljs language-html"
|
||||
}, [_c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-switch\"")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("span")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-switch-text\"")]), _vm._v(">")]), _vm._v("Switch state: "), _c('span', [_vm._v("{{")]), _vm._v("switchStateText"), _c('span', [_vm._v("}}")]), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("span")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-switch")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-switch-sample\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v(":checked")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"switchState\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v(":onChange")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"updateState\"")]), _vm._v(">")]), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-switch")]), _vm._v(">")]), _vm._v("\n "), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-switch")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("class")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"page-switch-sample\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v(":checked")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"false\"")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v(":disabled")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"true\"")]), _vm._v(">")]), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("z-switch")]), _vm._v(">")]), _vm._v("\n"), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("div")]), _vm._v(">")]), _vm._v("\n")])]), _vm._v(" "), _c('pre', [_c('code', {
|
||||
staticClass: "hljs language-javascript"
|
||||
}, [_c('span', {
|
||||
staticClass: "hljs-keyword"
|
||||
}, [_vm._v("export")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-keyword"
|
||||
}, [_vm._v("default")]), _vm._v(" {\n data() {\n "), _c('span', {
|
||||
staticClass: "hljs-keyword"
|
||||
}, [_vm._v("return")]), _vm._v(" {\n "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("switchState")]), _vm._v(": "), _c('span', {
|
||||
staticClass: "hljs-literal"
|
||||
}, [_vm._v("false")]), _vm._v("\n };\n },\n "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("computed")]), _vm._v(": {\n switchStateText() {\n "), _c('span', {
|
||||
staticClass: "hljs-keyword"
|
||||
}, [_vm._v("return")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-keyword"
|
||||
}, [_vm._v("this")]), _vm._v(".switchState ? "), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("'on'")]), _vm._v(" : "), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("'off'")]), _vm._v(";\n }\n },\n "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v("methods")]), _vm._v(": {\n updateState(newState) {\n "), _c('span', {
|
||||
staticClass: "hljs-built_in"
|
||||
}, [_vm._v("console")]), _vm._v(".log("), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("'changing'")]), _vm._v(");\n "), _c('span', {
|
||||
staticClass: "hljs-keyword"
|
||||
}, [_vm._v("this")]), _vm._v(".switchState = newState;\n }\n }\n};\n")])])])]), _vm._v(" "), _vm._m(2), _vm._v(" "), _vm._m(3)], 1)
|
||||
},staticRenderFns: [function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h2', {
|
||||
attrs: {
|
||||
"id": "switch-zu-jian"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#switch-zu-jian",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" Switch组件")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "ji-chu-yong-fa"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#ji-chu-yong-fa",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" 基础用法")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "api"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#api",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" API")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('table', {
|
||||
staticClass: "table"
|
||||
}, [_c('thead', [_c('tr', [_c('th', [_vm._v("参数")]), _vm._v(" "), _c('th', [_vm._v("说明")]), _vm._v(" "), _c('th', [_vm._v("类型")]), _vm._v(" "), _c('th', [_vm._v("默认值")]), _vm._v(" "), _c('th', [_vm._v("可选值")])])]), _vm._v(" "), _c('tbody', [_c('tr', [_c('td', [_vm._v("checked")]), _vm._v(" "), _c('td', [_vm._v("开关状态")]), _vm._v(" "), _c('td', [_vm._v("boolean")]), _vm._v(" "), _c('td', [_vm._v("false")]), _vm._v(" "), _c('td', [_vm._v("true,false")])]), _vm._v(" "), _c('tr', [_c('td', [_vm._v("loading")]), _vm._v(" "), _c('td', [_vm._v("loading状态")]), _vm._v(" "), _c('td', [_vm._v("boolean")]), _vm._v(" "), _c('td', [_vm._v("false")]), _vm._v(" "), _c('td', [_vm._v("true,false")])]), _vm._v(" "), _c('tr', [_c('td', [_vm._v("disabled")]), _vm._v(" "), _c('td', [_vm._v("禁用状态")]), _vm._v(" "), _c('td', [_vm._v("boolean")]), _vm._v(" "), _c('td', [_vm._v("false")]), _vm._v(" "), _c('td', [_vm._v("true,false")])]), _vm._v(" "), _c('tr', [_c('td', [_vm._v("onChange")]), _vm._v(" "), _c('td', [_vm._v("回调")]), _vm._v(" "), _c('td', [_vm._v("function")]), _vm._v(" "), _c('td', [_vm._v("function(){}")]), _vm._v(" "), _c('td', [_vm._v("-")])])])])
|
||||
}]}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 223:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// style-loader: Adds some css to the DOM by adding a <style> tag
|
||||
|
||||
// load the styles
|
||||
var content = __webpack_require__(215);
|
||||
if(typeof content === 'string') content = [[module.i, content, '']];
|
||||
if(content.locals) module.exports = content.locals;
|
||||
// add the styles to the DOM
|
||||
var update = __webpack_require__(20)("07b8cfeb", content, true);
|
||||
// Hot Module Replacement
|
||||
if(false) {
|
||||
// When the styles change, update the <style> tags
|
||||
if(!content.locals) {
|
||||
module.hot.accept("!!./../../css-loader/index.js?minimize!./../../vue-loader/lib/style-rewriter.js?id=data-v-33792b69!./../../vue-loader/lib/selector.js?type=styles&index=0!./button-1.vue", function() {
|
||||
var newContent = require("!!./../../css-loader/index.js?minimize!./../../vue-loader/lib/style-rewriter.js?id=data-v-33792b69!./../../vue-loader/lib/selector.js?type=styles&index=0!./button-1.vue");
|
||||
if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];
|
||||
update(newContent);
|
||||
});
|
||||
}
|
||||
// When the module is disposed, remove the <style> tags
|
||||
module.hot.dispose(function() { update(); });
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 224:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
// style-loader: Adds some css to the DOM by adding a <style> tag
|
||||
|
||||
// load the styles
|
||||
var content = __webpack_require__(216);
|
||||
if(typeof content === 'string') content = [[module.i, content, '']];
|
||||
if(content.locals) module.exports = content.locals;
|
||||
// add the styles to the DOM
|
||||
var update = __webpack_require__(20)("0ce6222c", content, true);
|
||||
// Hot Module Replacement
|
||||
if(false) {
|
||||
// When the styles change, update the <style> tags
|
||||
if(!content.locals) {
|
||||
module.hot.accept("!!./../../css-loader/index.js?minimize!./../../vue-loader/lib/style-rewriter.js?id=data-v-450f60ed!./../../vue-loader/lib/selector.js?type=styles&index=0!./switch-3.vue", function() {
|
||||
var newContent = require("!!./../../css-loader/index.js?minimize!./../../vue-loader/lib/style-rewriter.js?id=data-v-450f60ed!./../../vue-loader/lib/selector.js?type=styles&index=0!./switch-3.vue");
|
||||
if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];
|
||||
update(newContent);
|
||||
});
|
||||
}
|
||||
// When the module is disposed, remove the <style> tags
|
||||
module.hot.dispose(function() { update(); });
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 225:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(217);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 226:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(218);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 227:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(219);
|
||||
|
||||
/***/ })
|
||||
|
||||
});
|
||||
//# sourceMappingURL=0.js.map
|
1
docs/build/0.js.map
vendored
1
docs/build/0.js.map
vendored
File diff suppressed because one or more lines are too long
241
docs/build/1.1.js
vendored
241
docs/build/1.1.js
vendored
@ -1,241 +0,0 @@
|
||||
webpackJsonp([1],{
|
||||
|
||||
/***/ 22:
|
||||
/***/ function(module, exports, __webpack_require__) {
|
||||
|
||||
var map = {
|
||||
"./examples/sample.md": 23
|
||||
};
|
||||
function webpackContext(req) {
|
||||
return __webpack_require__(webpackContextResolve(req));
|
||||
};
|
||||
function webpackContextResolve(req) {
|
||||
return map[req] || (function() { throw new Error("Cannot find module '" + req + "'.") }());
|
||||
};
|
||||
webpackContext.keys = function webpackContextKeys() {
|
||||
return Object.keys(map);
|
||||
};
|
||||
webpackContext.resolve = webpackContextResolve;
|
||||
module.exports = webpackContext;
|
||||
webpackContext.id = 22;
|
||||
|
||||
|
||||
/***/ },
|
||||
|
||||
/***/ 23:
|
||||
/***/ function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(24);
|
||||
|
||||
/***/ },
|
||||
|
||||
/***/ 24:
|
||||
/***/ function(module, exports, __webpack_require__) {
|
||||
|
||||
var __vue_exports__, __vue_options__
|
||||
var __vue_styles__ = {}
|
||||
|
||||
/* script */
|
||||
__vue_exports__ = __webpack_require__(25)
|
||||
|
||||
/* template */
|
||||
var __vue_template__ = __webpack_require__(26)
|
||||
__vue_options__ = __vue_exports__ = __vue_exports__ || {}
|
||||
if (
|
||||
typeof __vue_exports__.default === "object" ||
|
||||
typeof __vue_exports__.default === "function"
|
||||
) {
|
||||
if (Object.keys(__vue_exports__).some(function (key) { return key !== "default" && key !== "__esModule" })) {console.error("named exports are not supported in *.vue files.")}
|
||||
__vue_options__ = __vue_exports__ = __vue_exports__.default
|
||||
}
|
||||
if (typeof __vue_options__ === "function") {
|
||||
__vue_options__ = __vue_options__.options
|
||||
}
|
||||
__vue_options__.__file = "/Users/fenglai/project/oxygen/node_modules/vue-markdown-loader/.cache/sample-1.vue"
|
||||
__vue_options__.render = __vue_template__.render
|
||||
__vue_options__.staticRenderFns = __vue_template__.staticRenderFns
|
||||
|
||||
/* hot reload */
|
||||
if (false) {(function () {
|
||||
var hotAPI = require("vue-loader/node_modules/vue-hot-reload-api")
|
||||
hotAPI.install(require("vue"), false)
|
||||
if (!hotAPI.compatible) return
|
||||
module.hot.accept()
|
||||
if (!module.hot.data) {
|
||||
hotAPI.createRecord("data-v-94b78d06", __vue_options__)
|
||||
} else {
|
||||
hotAPI.reload("data-v-94b78d06", __vue_options__)
|
||||
}
|
||||
})()}
|
||||
if (__vue_options__.functional) {console.error("[vue-loader] sample-1.vue: functional components are not supported and should be defined in plain js files using render functions.")}
|
||||
|
||||
module.exports = __vue_exports__
|
||||
|
||||
|
||||
/***/ },
|
||||
|
||||
/***/ 25:
|
||||
/***/ function(module, exports) {
|
||||
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
exports.default = {
|
||||
data: function data() {
|
||||
return {
|
||||
author: 'test'
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
/***/ },
|
||||
|
||||
/***/ 26:
|
||||
/***/ function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('section', [_vm._m(0), _vm._v(" "), _vm._m(1), _vm._v(" "), _c('p', [_vm._v("基础的按钮用法。")]), _vm._v(" "), _c('demo-block', {
|
||||
staticClass: "demo-box"
|
||||
}, [_c('div', {
|
||||
staticClass: "source",
|
||||
slot: "source"
|
||||
}, [_c('sample', {
|
||||
attrs: {
|
||||
"author": _vm.author
|
||||
}
|
||||
})], 1), _vm._v(" "), _c('p', [_vm._v("样例代码")]), _vm._v(" "), _c('div', {
|
||||
staticClass: "highlight",
|
||||
slot: "highlight"
|
||||
}, [_c('pre', [_c('code', {
|
||||
staticClass: "hljs language-html"
|
||||
}, [_c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("<"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("sample")]), _vm._v(" "), _c('span', {
|
||||
staticClass: "hljs-attr"
|
||||
}, [_vm._v(":author")]), _vm._v("="), _c('span', {
|
||||
staticClass: "hljs-string"
|
||||
}, [_vm._v("\"author\"")]), _vm._v(">")]), _c('span', {
|
||||
staticClass: "hljs-tag"
|
||||
}, [_vm._v("</"), _c('span', {
|
||||
staticClass: "hljs-name"
|
||||
}, [_vm._v("sample")]), _vm._v(">")]), _vm._v("\n")])])])]), _vm._v(" "), _vm._m(2), _vm._v(" "), _vm._m(3)], 1)
|
||||
},staticRenderFns: [function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h2', {
|
||||
attrs: {
|
||||
"id": "sample-zu-jian"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#sample-zu-jian",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" sample组件")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "ji-chu-yong-fa"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#ji-chu-yong-fa",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" 基础用法")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('h3', {
|
||||
attrs: {
|
||||
"id": "attributes"
|
||||
}
|
||||
}, [_c('a', {
|
||||
staticClass: "header-anchor",
|
||||
attrs: {
|
||||
"href": "#attributes",
|
||||
"aria-hidden": "true"
|
||||
}
|
||||
}, [_vm._v("¶")]), _vm._v(" Attributes")])
|
||||
},function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
||||
return _c('table', {
|
||||
staticClass: "table"
|
||||
}, [_c('thead', [_c('tr', [_c('th', [_vm._v("参数")]), _vm._v(" "), _c('th', [_vm._v("说明")]), _vm._v(" "), _c('th', [_vm._v("类型")]), _vm._v(" "), _c('th', [_vm._v("可选值")]), _vm._v(" "), _c('th', [_vm._v("默认值")])])]), _vm._v(" "), _c('tbody', [_c('tr', [_c('td', [_vm._v("size")]), _vm._v(" "), _c('td', [_vm._v("尺寸")]), _vm._v(" "), _c('td', [_vm._v("string")]), _vm._v(" "), _c('td', [_vm._v("large")]), _vm._v(" "), _c('td', [_vm._v("—")])]), _vm._v(" "), _c('tr', [_c('td', [_vm._v("type")]), _vm._v(" "), _c('td', [_vm._v("类型")]), _vm._v(" "), _c('td', [_vm._v("string")]), _vm._v(" "), _c('td', [_vm._v("primary,warning,text")]), _vm._v(" "), _c('td', [_vm._v("—")])]), _vm._v(" "), _c('tr', [_c('td', [_vm._v("disabled")]), _vm._v(" "), _c('td', [_vm._v("禁用")]), _vm._v(" "), _c('td', [_vm._v("boolean")]), _vm._v(" "), _c('td', [_vm._v("true, false")]), _vm._v(" "), _c('td', [_vm._v("false")])]), _vm._v(" "), _c('tr', [_c('td', [_vm._v("icon")]), _vm._v(" "), _c('td', [_vm._v("图标,已有的图标库中的图标名")]), _vm._v(" "), _c('td', [_vm._v("string")]), _vm._v(" "), _c('td', [_vm._v("—")]), _vm._v(" "), _c('td', [_vm._v("—")])]), _vm._v(" "), _c('tr', [_c('td', [_vm._v("to")]), _vm._v(" "), _c('td', [_vm._v("路由跳转路径")]), _vm._v(" "), _c('td', [_vm._v("Object")]), _vm._v(" "), _c('td', [_vm._v("—")]), _vm._v(" "), _c('td', [_vm._v("—")])])])])
|
||||
}]}
|
||||
module.exports.render._withStripped = true
|
||||
if (false) {
|
||||
module.hot.accept()
|
||||
if (module.hot.data) {
|
||||
require("vue-loader/node_modules/vue-hot-reload-api").rerender("data-v-94b78d06", module.exports)
|
||||
}
|
||||
}
|
||||
|
||||
/***/ }
|
||||
|
||||
});
|
||||
//# sourceMappingURL=1.1.js.map
|
1
docs/build/1.1.js.map
vendored
1
docs/build/1.1.js.map
vendored
File diff suppressed because one or more lines are too long
17760
docs/build/build-docs.js
vendored
17760
docs/build/build-docs.js
vendored
File diff suppressed because one or more lines are too long
1
docs/build/build-docs.js.map
vendored
1
docs/build/build-docs.js.map
vendored
File diff suppressed because one or more lines are too long
@ -2,7 +2,7 @@
|
||||
<div class="page-button">
|
||||
<h1 class="page-title">Button</h1>
|
||||
<h2 class="page-sub-title">按钮功能</h2>
|
||||
<div class="page-button__group">
|
||||
<div class="z-button-group">
|
||||
<div class="z-button-1">
|
||||
<z-button>default</z-button>
|
||||
</div>
|
||||
@ -15,19 +15,19 @@
|
||||
</div>
|
||||
|
||||
<h2 class="page-sub-title">禁用状态</h2>
|
||||
<div class="page-button__group">
|
||||
<div class="z-button-group">
|
||||
<div class="z-button-1">
|
||||
<z-button disabled>diabled</z-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 class="page-sub-title">按钮尺寸</h2>
|
||||
<div class="page-button__group">
|
||||
<div class="z-button-group">
|
||||
<div class="z-button-1">
|
||||
<z-button size="large">large</z-button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="page-button__group">
|
||||
<div class="z-button-group">
|
||||
<div class="z-button-3">
|
||||
<z-button type="primary">normal</z-button>
|
||||
</div>
|
||||
@ -40,14 +40,14 @@
|
||||
</div>
|
||||
|
||||
<h2 class="page-sub-title">自定义按钮标签</h2>
|
||||
<div class="page-button__group">
|
||||
<div class="z-button-group">
|
||||
<div class="z-button-1">
|
||||
<z-button tag="a" type="primary" href="https://www.youzan.com" target="_blank">a标签按钮</z-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 class="page-sub-title">button group</h2>
|
||||
<div class="page-button__group">
|
||||
<div class="z-button-group">
|
||||
<z-button type="primary" size="small">确认付款</z-button>
|
||||
<z-button size="small">确认收货</z-button>
|
||||
<z-button size="small">取消订单</z-button>
|
||||
@ -59,12 +59,14 @@
|
||||
@component-namespace page {
|
||||
@b button {
|
||||
padding: 0 20px;
|
||||
|
||||
@e group {
|
||||
.z-button-1 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@component-namespace z {
|
||||
@b button-group {
|
||||
.z-button-1 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
@ -8,7 +8,7 @@ import SideNav from './components/side-nav';
|
||||
import Mobile from './components/mobile';
|
||||
import ZanUI from '../src/index';
|
||||
|
||||
import 'packages/zanui-css/src/index.css';
|
||||
import '../packages/zanui-css/src/index.css';
|
||||
|
||||
Vue.use(ZanUI);
|
||||
Vue.use(VueRouter);
|
||||
|
@ -2,7 +2,7 @@
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
padding-right: 10px;
|
||||
&::last-child {
|
||||
&:last-child {
|
||||
padding-right: 0;
|
||||
}
|
||||
.z-button {
|
||||
|
@ -37,9 +37,9 @@ const install = function(Vue) {
|
||||
// auto install
|
||||
if (typeof window !== 'undefined' && window.Vue) {
|
||||
install(window.Vue);
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
export default {
|
||||
install,
|
||||
version: '0.0.1',
|
||||
Button,
|
||||
|
Loading…
x
Reference in New Issue
Block a user