新增neutrino-proxy-admin项目

This commit is contained in:
aoshiguchen
2022-07-23 13:47:10 +08:00
parent dfa5a61258
commit 770f67321c
240 changed files with 21298 additions and 4 deletions
@@ -0,0 +1,13 @@
<template>
<div>
<!--error code-->
{{a.a}}
<!--error code-->
</div>
</template>
<script>
export default {
name: 'errorTestA'
}
</script>
@@ -0,0 +1,11 @@
<template>
<div></div>
</template>
<script>
export default {
created() {
this.b = b // eslint-disable-line
}
}
</script>
@@ -0,0 +1,33 @@
<template>
<div class="errPage-container">
<errorA></errorA>
<errorB></errorB>
<!-- $t is vue-i18n global function to translate lang -->
<h3>{{$t('errorLog.tips')}}</h3>
<code>
{{$t('errorLog.description')}}
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/#/error?id=%e4%bb%a3%e7%a0%81">
{{$t('errorLog.documentation')}}
</a>
</code>
<a href="#">
<img src='https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif'>
</a>
</div>
</template>
<script>
import errorA from './errorTestA'
import errorB from './errorTestB'
export default {
name: 'errorLog',
components: { errorA, errorB }
}
</script>
<style scoped>
.errPage-container {
padding: 30px;
}
</style>