mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2026-01-08 13:08:11 +00:00
21 lines
518 B
Vue
21 lines
518 B
Vue
<template>
|
|
<div class="main-container"></div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {ref} from 'vue'
|
|
import {useRouter} from 'vue-router'
|
|
import {getWapDomain} from '@/utils/common'
|
|
|
|
const wapDomain = ref(getWapDomain() + '/pages/member/index')
|
|
|
|
const router = useRouter()
|
|
const url = router.resolve({
|
|
path: '/decorate/edit',
|
|
query: {name: 'DIY_MEMBER_INDEX'}
|
|
});
|
|
router.push('/decorate/edit?name=DIY_MEMBER_INDEX')
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style> |