vant/docs/build/1.js.map
2017-03-01 19:27:38 +08:00

1 line
9.7 KiB
Plaintext

{"version":3,"sources":["webpack:///./docs/components/demo-list.vue","webpack:///demo-list.vue","webpack:///./docs/components/demo-list.vue?ea02","webpack:///./docs/components/demo-list.vue?0445","webpack:///./docs/components/demo-list.vue?2bd8"],"names":[],"mappings":";;;;;;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;;;;;;;ACgCA;;;;;;;wBAEA;;kBAEA;gBACA;gCACA;YAEA;AALA;AAMA;AARA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AChDA;AACA;;;AAGA;AACA,mCAAoC,WAAW,sBAAsB,kBAAkB,mBAAmB,aAAa,gBAAgB,aAAa,UAAU,SAAS,gBAAgB,sBAAsB,eAAe,cAAc,iBAAiB,YAAY,SAAS,UAAU,qBAAqB,cAAc,kBAAkB,2BAA2B,mBAAmB,6BAA6B,cAAc,gCAAgC,cAAc,YAAY,iBAAiB,eAAe,kBAAkB,sCAAsC,cAAc,4BAA4B,eAAe,cAAc,iBAAiB,iBAAiB,gBAAgB;;AAEnrB;;;;;;;;ACPA,gBAAgB,mBAAmB,aAAa,0BAA0B;AAC1E;AACA;AACA,GAAG;AACH;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP;AACA,OAAO;AACP;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA,SAAS;AACT,OAAO;AACP,KAAK;AACL,GAAG;AACH,CAAC,qB;;;;;;;ACnDD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA,gCAAgC,UAAU,EAAE;AAC5C,C","file":"1.js","sourcesContent":["\n/* styles */\nrequire(\"!!vue-loader/node_modules/vue-style-loader!css-loader?minimize!../../node_modules/vue-loader/lib/style-rewriter?id=data-v-0a10052a!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./demo-list.vue\")\n\nvar Component = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")(\n /* script */\n require(\"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./demo-list.vue\"),\n /* template */\n require(\"!!../../node_modules/vue-loader/lib/template-compiler?id=data-v-0a10052a!../../node_modules/vue-loader/lib/selector?type=template&index=0!./demo-list.vue\"),\n /* scopeId */\n null,\n /* cssModules */\n null\n)\n\nmodule.exports = Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./docs/components/demo-list.vue\n// module id = 194\n// module chunks = 1","<template>\n <div class=\"side-nav\">\n <ul>\n <li class=\"nav-item\" v-for=\"item in data\">\n <a v-if=\"!item.path\">{{item.name}}</a>\n <router-link\n v-else\n active-class=\"active\"\n :to=\"base + item.path\"\n exact\n v-text=\"item.title || item.name\">\n </router-link>\n <ul class=\"pure-menu-list sub-nav\" v-if=\"item.children\">\n <li class=\"nav-item\" v-for=\"navItem in item.children\">\n <router-link\n active-class=\"active\"\n :to=\"base + navItem.path\"\n v-text=\"navItem.title || navItem.name\">\n </router-link>\n </li>\n </ul>\n <template v-if=\"item.groups\">\n <div class=\"nav-group\" v-for=\"group in item.groups\">\n <div class=\"nav-group__title\">{{group.groupName}}</div>\n <ul class=\"pure-menu-list\">\n <template v-for=\"navItem in group.list\">\n <li\n class=\"nav-item\"\n v-if=\"!navItem.disabled\">\n <router-link\n active-class=\"active\"\n :to=\"base + navItem.path\"\n v-text=\"navItem.title\">\n </router-link>\n </li>\n </template>\n </ul>\n </div>\n </template>\n </li>\n </ul>\n </div>\n</template>\n\n<script>\nimport navConfig from '../nav.config.json';\n\nexport default {\n data() {\n return {\n highlights: [],\n navState: [],\n data: navConfig['zh-CN'],\n base: '/component'\n };\n }\n};\n</script>\n\n<style>\n .side-nav {\n width: 100%;\n box-sizing: border-box;\n padding: 40px 20px;\n background: #f9fafb;\n\n li {\n list-style: none;\n }\n ul {\n padding: 0;\n margin: 0;\n overflow: hidden;\n }\n\n .nav-item {\n a {\n font-size: 16px;\n color: #5e6d82;\n line-height: 40px;\n height: 40px;\n margin: 0;\n padding: 0;\n text-decoration: none;\n display: block;\n position: relative;\n transition: all .3s;\n\n &.active {\n color: #20a0ff;\n }\n }\n .nav-item {\n a {\n display: block;\n height: 40px;\n line-height: 40px;\n font-size: 13px;\n padding-left: 24px;\n\n\n &:hover {\n color: #20a0ff;\n }\n }\n }\n }\n .nav-group__title {\n font-size: 12px;\n color: #99a9bf;\n padding-left: 8px;\n line-height: 26px;\n margin-top: 10px;\n }\n }\n</style>\n\n\n\n// WEBPACK FOOTER //\n// demo-list.vue?19d9c6b3","exports = module.exports = require(\"../../node_modules/css-loader/lib/css-base.js\")();\n// imports\n\n\n// module\nexports.push([module.id, \".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}\", \"\"]);\n\n// exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/css-loader?minimize!./~/vue-loader/lib/style-rewriter.js?id=data-v-0a10052a!./~/vue-loader/lib/selector.js?type=styles&index=0!./docs/components/demo-list.vue\n// module id = 224\n// module chunks = 1","module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;\n return _c('div', {\n staticClass: \"side-nav\"\n }, [_c('ul', _vm._l((_vm.data), function(item) {\n return _c('li', {\n staticClass: \"nav-item\"\n }, [(!item.path) ? _c('a', [_vm._v(_vm._s(item.name))]) : _c('router-link', {\n attrs: {\n \"active-class\": \"active\",\n \"to\": _vm.base + item.path,\n \"exact\": \"\"\n },\n domProps: {\n \"textContent\": _vm._s(item.title || item.name)\n }\n }), _vm._v(\" \"), (item.children) ? _c('ul', {\n staticClass: \"pure-menu-list sub-nav\"\n }, _vm._l((item.children), function(navItem) {\n return _c('li', {\n staticClass: \"nav-item\"\n }, [_c('router-link', {\n attrs: {\n \"active-class\": \"active\",\n \"to\": _vm.base + navItem.path\n },\n domProps: {\n \"textContent\": _vm._s(navItem.title || navItem.name)\n }\n })], 1)\n })) : _vm._e(), _vm._v(\" \"), (item.groups) ? _vm._l((item.groups), function(group) {\n return _c('div', {\n staticClass: \"nav-group\"\n }, [_c('div', {\n staticClass: \"nav-group__title\"\n }, [_vm._v(_vm._s(group.groupName))]), _vm._v(\" \"), _c('ul', {\n staticClass: \"pure-menu-list\"\n }, [_vm._l((group.list), function(navItem) {\n return [(!navItem.disabled) ? _c('li', {\n staticClass: \"nav-item\"\n }, [_c('router-link', {\n attrs: {\n \"active-class\": \"active\",\n \"to\": _vm.base + navItem.path\n },\n domProps: {\n \"textContent\": _vm._s(navItem.title)\n }\n })], 1) : _vm._e()]\n })], 2)])\n }) : _vm._e()], 2)\n }))])\n},staticRenderFns: []}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-loader/lib/template-compiler.js?id=data-v-0a10052a!./~/vue-loader/lib/selector.js?type=template&index=0!./docs/components/demo-list.vue\n// module id = 274\n// module chunks = 1","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = 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\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar update = require(\"!../../node_modules/vue-loader/node_modules/vue-style-loader/lib/addStylesClient.js\")(\"1517d9c0\", content, true);\n// Hot Module Replacement\nif(module.hot) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n 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() {\n 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\");\n if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/vue-loader/~/vue-style-loader!./~/css-loader?minimize!./~/vue-loader/lib/style-rewriter.js?id=data-v-0a10052a!./~/vue-loader/lib/selector.js?type=styles&index=0!./docs/components/demo-list.vue\n// module id = 307\n// module chunks = 1"],"sourceRoot":""}