|
@@ -0,0 +1,33 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <h1>index</h1>
|
|
|
+ <el-input v-model="state.val"/><br/>
|
|
|
+ <el-button @click="routerToLink('/b')">路由跳转到{{state.val}}</el-button><br/>
|
|
|
+ <el-button @click="windowToLink('/b')">window打开{{state.val}}</el-button><br/>
|
|
|
+ <el-button @click="locationToLink('/b')">重定向到{{state.val}}</el-button><br/>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+import {getCurrentInstance, reactive} from "vue";
|
|
|
+import {useRouter} from "vue-router";
|
|
|
+
|
|
|
+const router = useRouter()
|
|
|
+const {proxy} = getCurrentInstance()
|
|
|
+const state: any = reactive({
|
|
|
+ val: ''
|
|
|
+})
|
|
|
+const routerToLink = (url) => {
|
|
|
+ router.push(url)
|
|
|
+}
|
|
|
+const windowToLink = (url) => {
|
|
|
+ window.open(url, "_blank");
|
|
|
+}
|
|
|
+const locationToLink = (url) => {
|
|
|
+ window.location.replace(url);
|
|
|
+
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+</style>
|