You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
200 B
12 lines
200 B
<template>
|
|
<view></view>
|
|
</template>
|
|
|
|
<script>
|
|
/* 路由分发页面仅供跳转页面 */
|
|
export default {
|
|
onLoad(options){
|
|
this.$url('/pages/index/index', {type: 'switch'});
|
|
}
|
|
}
|
|
</script>
|