mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-21 02:57:54 +08:00
docs: 增加vue3、vue2文档
This commit is contained in:
29
newdocs/docs/notes/vue2/openurl.md
Normal file
29
newdocs/docs/notes/vue2/openurl.md
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
title: 打开指定URL
|
||||
createTime: 2025/04/23 23:43:26
|
||||
permalink: /vue2/openurl/
|
||||
---
|
||||
|
||||
上一章节通过添加模块或直接在路由表中添加固定路由实现路由控制。在有些场景下,需要代码中直接打开一个外部指定URL的地址(不通过系统的【模块管理】功能添加到导航栏),如下图:
|
||||
|
||||

|
||||
|
||||
可以直接使用下面代码实现:
|
||||
|
||||
```javascript
|
||||
openUrl() {
|
||||
let obj = {}
|
||||
obj['openauth'] = { //这里的openauth可以改成你希望在浏览器地址栏中看到的url
|
||||
name: '官网',
|
||||
url: 'http://www.openauth.net.cn',
|
||||
}
|
||||
this.$store.dispatch('setIframeTagViews', obj, { root: true })
|
||||
|
||||
this.$router.push({ path: '/iframePage/openauth' })
|
||||
},
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user