| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="">
- <auth :type="type"></auth>
- </view>
- </template>
- <script>
- import auth from "@/comps/auth.vue"
- export default {
- components:{
- auth
- },
- data() {
- return {
- type:null
- };
- },
- onLoad(options) {
- this.type=options.type
- }
- };
- </script>
- <style lang="scss" scoped>
-
- </style>
|