123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="beian" @click="handleClick">
- 蜀ICP备2023016577号-2
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- props: {
- },
- onLoad() {
- },
- methods: {
- handleClick() {
- this.$emit('click')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .beian {
- color: #199063;
- text-align: center;
- padding-bottom: 30rpx;
- text-decoration: underline;
- }
- </style>
|