123456789101112131415161718192021222324252627 |
- <template>
- <view class="">
- <div class="text-center">
- Copyright
- <!-- <el-icon><Connection /></el-icon> -->
- {{ fullYear }}
- <a class="ml-1 text-primary" target="_blank" href="https://beian.miit.gov.cn/">浙ICP备2020034617号-1</a>
- </div>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- fullYear: new Date().getFullYear()
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|