123456789101112131415161718192021222324252627 |
- <template>
- <mobile-frame>
- <view class="main">
- 用户协议
- </view>
- </mobile-frame>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onShow: function() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .main {
- text-align: center;
- }
- </style>
|