8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 782d43d commit 99ec8a2Copy full SHA for 99ec8a2
src/layout/components/MainFooter.vue
@@ -2,17 +2,21 @@
2
<div class="main-footer">
3
<span>Copyright@pycoder404</span>
4
<br>
5
- <span>{{ ICP_ID }}</span>
+ <el-link href="https://beian.miit.gov.cn" type="info"> {{ ICP_ID }}</el-link>
6
+ <el-link href="https://beian.miit.gov.cn" type="info"> {{ POL_ICP_ID }}</el-link>
7
+
8
</div>
9
</template>
10
11
<script>
12
const VUE_APP_ICP_ID = process.env.VUE_APP_ICP_ID
13
+ const VUE_APP_POL_ICP_ID = process.env.VUE_APP_POL_ICP_ID
14
export default {
15
name: "MainFooter",
16
data() {
17
return {
- ICP_ID: VUE_APP_ICP_ID
18
+ ICP_ID: VUE_APP_ICP_ID,
19
+ POL_ICP_ID:VUE_APP_POL_ICP_ID
20
}
21
22
0 commit comments