index.vue 424 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="beian" @click="handleClick">
  3. 蜀ICP备2023016577号-2
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },
  12. props: {
  13. },
  14. onLoad() {
  15. },
  16. methods: {
  17. handleClick() {
  18. this.$emit('click')
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .beian {
  25. color: #199063;
  26. text-align: center;
  27. padding-bottom: 30rpx;
  28. text-decoration: underline;
  29. }
  30. </style>