template.vue 235 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="pageCon">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onLoad(opt) {
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .pageCon{
  19. }
  20. </style>