mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
199 lines
4.9 KiB
JavaScript
199 lines
4.9 KiB
JavaScript
webpackJsonp([1],{
|
|
|
|
/***/ 194:
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
|
|
/* styles */
|
|
__webpack_require__(315)
|
|
|
|
var Component = __webpack_require__(0)(
|
|
/* script */
|
|
__webpack_require__(204),
|
|
/* template */
|
|
__webpack_require__(279),
|
|
/* scopeId */
|
|
null,
|
|
/* cssModules */
|
|
null
|
|
)
|
|
|
|
module.exports = Component.exports
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 204:
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
"use strict";
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _navConfig = __webpack_require__(7);
|
|
|
|
var _navConfig2 = _interopRequireDefault(_navConfig);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
exports.default = {
|
|
data: function data() {
|
|
return {
|
|
highlights: [],
|
|
navState: [],
|
|
data: _navConfig2.default['zh-CN'],
|
|
base: '/component'
|
|
};
|
|
}
|
|
}; //
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
|
|
/***/ }),
|
|
|
|
/***/ 225:
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
exports = module.exports = __webpack_require__(4)();
|
|
// imports
|
|
|
|
|
|
// module
|
|
exports.push([module.i, ".side-nav{width:100%;box-sizing:border-box;padding:40px 20px;background:#f9fafb}.side-nav li{list-style:none}.side-nav ul{padding:0;margin:0;overflow:hidden}.side-nav .nav-item a{font-size:16px;color:#5e6d82;line-height:40px;height:40px;margin:0;padding:0;text-decoration:none;display:block;position:relative;-webkit-transition:all .3s;transition:all .3s}.side-nav .nav-item a.active{color:#20a0ff}.side-nav .nav-item .nav-item a{display:block;height:40px;line-height:40px;font-size:13px;padding-left:24px}.side-nav .nav-item .nav-item a:hover{color:#20a0ff}.side-nav .nav-group__title{font-size:12px;color:#99a9bf;padding-left:8px;line-height:26px;margin-top:10px}", ""]);
|
|
|
|
// exports
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ 279:
|
|
/***/ (function(module, exports) {
|
|
|
|
module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
|
|
return _c('div', {
|
|
staticClass: "side-nav"
|
|
}, [_c('ul', _vm._l((_vm.data), function(item) {
|
|
return _c('li', {
|
|
staticClass: "nav-item"
|
|
}, [(!item.path) ? _c('a', [_vm._v(_vm._s(item.name))]) : _c('router-link', {
|
|
attrs: {
|
|
"active-class": "active",
|
|
"to": _vm.base + item.path,
|
|
"exact": ""
|
|
},
|
|
domProps: {
|
|
"textContent": _vm._s(item.title || item.name)
|
|
}
|
|
}), _vm._v(" "), (item.children) ? _c('ul', {
|
|
staticClass: "pure-menu-list sub-nav"
|
|
}, _vm._l((item.children), function(navItem) {
|
|
return _c('li', {
|
|
staticClass: "nav-item"
|
|
}, [_c('router-link', {
|
|
attrs: {
|
|
"active-class": "active",
|
|
"to": _vm.base + navItem.path
|
|
},
|
|
domProps: {
|
|
"textContent": _vm._s(navItem.title || navItem.name)
|
|
}
|
|
})], 1)
|
|
})) : _vm._e(), _vm._v(" "), (item.groups) ? _vm._l((item.groups), function(group) {
|
|
return _c('div', {
|
|
staticClass: "nav-group"
|
|
}, [_c('div', {
|
|
staticClass: "nav-group__title"
|
|
}, [_vm._v(_vm._s(group.groupName))]), _vm._v(" "), _c('ul', {
|
|
staticClass: "pure-menu-list"
|
|
}, [_vm._l((group.list), function(navItem) {
|
|
return [(!navItem.disabled) ? _c('li', {
|
|
staticClass: "nav-item"
|
|
}, [_c('router-link', {
|
|
attrs: {
|
|
"active-class": "active",
|
|
"to": _vm.base + navItem.path
|
|
},
|
|
domProps: {
|
|
"textContent": _vm._s(navItem.title)
|
|
}
|
|
})], 1) : _vm._e()]
|
|
})], 2)])
|
|
}) : _vm._e()], 2)
|
|
}))])
|
|
},staticRenderFns: []}
|
|
|
|
/***/ }),
|
|
|
|
/***/ 315:
|
|
/***/ (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__(225);
|
|
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__(14)("1517d9c0", content, true);
|
|
// Hot Module Replacement
|
|
if(false) {
|
|
// When the styles change, update the <style> tags
|
|
if(!content.locals) {
|
|
module.hot.accept("!!../../node_modules/css-loader/index.js?minimize!../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-0a10052a!../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./demo-list.vue", function() {
|
|
var newContent = require("!!../../node_modules/css-loader/index.js?minimize!../../node_modules/vue-loader/lib/style-rewriter.js?id=data-v-0a10052a!../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./demo-list.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(); });
|
|
}
|
|
|
|
/***/ })
|
|
|
|
});
|
|
//# sourceMappingURL=1.js.map
|