summaryrefslogtreecommitdiff
path: root/priv/static/adminfe/static/js/chunk-da78.7530bb4c.js.map
diff options
context:
space:
mode:
Diffstat (limited to 'priv/static/adminfe/static/js/chunk-da78.7530bb4c.js.map')
-rw-r--r--priv/static/adminfe/static/js/chunk-da78.7530bb4c.js.map1
1 files changed, 1 insertions, 0 deletions
diff --git a/priv/static/adminfe/static/js/chunk-da78.7530bb4c.js.map b/priv/static/adminfe/static/js/chunk-da78.7530bb4c.js.map
new file mode 100644
index 000000000..e5f57e843
--- /dev/null
+++ b/priv/static/adminfe/static/js/chunk-da78.7530bb4c.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./src/views/errorPage/401.vue?a723","webpack:///./src/views/errorPage/401.vue?6307","webpack:///src/views/errorPage/401.vue","webpack:///./src/views/errorPage/401.vue","webpack:///./src/views/errorPage/401.vue?1164"],"names":["errorPage_401vue_type_script_lang_js_","name","methods","back","this","$route","query","noGoBack","$router","push","path","go","login","component","Object","componentNormalizer","_vm","_c","_self","staticClass","_v","_s","$t","on","click","attrs","type","__webpack_exports__","__webpack_require__"],"mappings":"wIAAA,ICAwMA,GCwBxMC,eACAC,SACAC,KADA,WAEAC,KAAAC,OAAAC,MAAAC,SACAH,KAAAI,QAAAC,MAAAC,gBAEAN,KAAAI,QAAAG,IAAA,IAGAC,MARA,WASAR,KAAAI,QAAAC,MAAAC,2CC1BAG,EAAgBC,OAAAC,EAAA,EAAAD,CACdd,EHTF,WAA+B,IAAAgB,EAAAZ,KAAAa,EAAAD,EAAAE,MAAAD,GAA6B,OAAAA,EAAA,OAAiBE,YAAA,yBAAmCF,EAAA,OAAYE,YAAA,eAAyBF,EAAA,KAAUE,YAAA,oBAA8BH,EAAAI,GAAA,KAAAH,EAAA,MAAuBE,YAAA,gBAA0BH,EAAAI,GAAAJ,EAAAK,GAAAL,EAAAM,GAAA,uBAAAN,EAAAI,GAAA,KAAAH,EAAA,MAAmEE,YAAA,gBAA0BH,EAAAI,GAAAJ,EAAAK,GAAAL,EAAAM,GAAA,qBAAAN,EAAAI,GAAA,KAAAH,EAAA,OAAkEE,YAAA,kBAA4BF,EAAA,aAAkBM,IAAIC,MAAAR,EAAAb,QAAkBa,EAAAI,GAAAJ,EAAAK,GAAAL,EAAAM,GAAA,mBAAAN,EAAAI,GAAA,KAAAH,EAAA,aAAsEQ,OAAOC,KAAA,WAAiBH,IAAKC,MAAAR,EAAAJ,SAAmBI,EAAAI,GAAAJ,EAAAK,GAAAL,EAAAM,GAAA,iCGYvkB,EACA,KACA,WACA,MAIeK,EAAA,QAAAd,6CCnBfe,EAAA","file":"static/js/chunk-da78.7530bb4c.js","sourcesContent":["var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{staticClass:\"error-page-container\"},[_c('div',{staticClass:\"error-page\"},[_c('i',{staticClass:\"el-icon-warning\"}),_vm._v(\" \"),_c('h1',{staticClass:\"error-title\"},[_vm._v(_vm._s(_vm.$t('errLog.error401')))]),_vm._v(\" \"),_c('h2',{staticClass:\"error-title\"},[_vm._v(_vm._s(_vm.$t('errLog.unauth')))]),_vm._v(\" \"),_c('div',{staticClass:\"buttons-group\"},[_c('el-button',{on:{\"click\":_vm.back}},[_vm._v(_vm._s(_vm.$t('errLog.back')))]),_vm._v(\" \"),_c('el-button',{attrs:{\"type\":\"primary\"},on:{\"click\":_vm.login}},[_vm._v(_vm._s(_vm.$t('errLog.login')))])],1)])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../node_modules/babel-loader/lib/index.js?cacheDirectory!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./401.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js?cacheDirectory!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./401.vue?vue&type=script&lang=js&\"","<!--\nSPDX-FileCopyrightText: 2017-2019 PanJiaChen <https://github.com/PanJiaChen/vue-element-admin>\nSPDX-License-Identifier: MIT\n\nSPDX-FileCopyrightText: 2019-2022 Pleroma Authors <https://pleroma.social>\nSPDX-License-Identifier: AGPL-3.0-only\n-->\n\n<template>\n <div class=\"error-page-container\">\n <div class=\"error-page\">\n <i class=\"el-icon-warning\"/>\n <h1 class=\"error-title\">{{ $t('errLog.error401') }}</h1>\n <h2 class=\"error-title\">{{ $t('errLog.unauth') }}</h2>\n <div class=\"buttons-group\">\n <el-button @click=\"back\">{{ $t('errLog.back') }}</el-button>\n <el-button type=\"primary\" @click=\"login\">{{ $t('errLog.login') }}</el-button>\n </div>\n </div>\n </div>\n</template>\n\n<script>\nexport default {\n name: 'Page401',\n methods: {\n back() {\n if (this.$route.query.noGoBack) {\n this.$router.push({ path: '/login' })\n } else {\n this.$router.go(-1)\n }\n },\n login() {\n this.$router.push({ path: '/login' })\n }\n }\n}\n</script>\n\n<style rel=\"stylesheet/scss\" lang=\"scss\" scoped>\n .error-page-container {\n min-height: 100%;\n width: 100%;\n background-color: #2d3a4b;\n overflow: hidden;\n .buttons-group {\n margin-top: 4em;\n }\n .el-icon-warning {\n font-size: 4.2em;\n color: #eee;\n margin: 0 auto;\n }\n .error-page {\n width: 45rem;\n max-width: 100%;\n margin: 16rem auto;\n text-align: center;\n }\n .error-title {\n color: #eee;\n }\n }\n</style>\n","import { render, staticRenderFns } from \"./401.vue?vue&type=template&id=41b01641&scoped=true&\"\nimport script from \"./401.vue?vue&type=script&lang=js&\"\nexport * from \"./401.vue?vue&type=script&lang=js&\"\nimport style0 from \"./401.vue?vue&type=style&index=0&id=41b01641&prod&rel=stylesheet%2Fscss&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"41b01641\",\n null\n \n)\n\nexport default component.exports","export * from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js!../../../node_modules/css-loader/index.js??ref--10-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/dist/cjs.js??ref--10-2!../../../node_modules/sass-loader/dist/cjs.js??ref--10-3!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./401.vue?vue&type=style&index=0&id=41b01641&prod&rel=stylesheet%2Fscss&lang=scss&scoped=true&\""],"sourceRoot":""} \ No newline at end of file