agree.vue 286 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <mobile-frame>
  3. <view class="main">
  4. 用户协议
  5. </view>
  6. </mobile-frame>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {};
  12. },
  13. onShow: function() {
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. .main {
  21. text-align: center;
  22. }
  23. </style>