empty.vue 307 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="">
  3. <auth :type="type"></auth>
  4. </view>
  5. </template>
  6. <script>
  7. import auth from "@/comps/auth.vue"
  8. export default {
  9. components:{
  10. auth
  11. },
  12. data() {
  13. return {
  14. type:null
  15. };
  16. },
  17. onLoad(options) {
  18. this.type=options.type
  19. }
  20. };
  21. </script>
  22. <style lang="scss" scoped>
  23. </style>