# winOpen([obj])
新开标签页,使用noopener noreferrer
防止安全漏洞,例如xss
Author: liukun 919590347@qq.com
Param | Type | Default | Description |
---|---|---|---|
[obj] | object | { path, query = {}, target = '_blank' } | 跳转所需信息 |
obj.path | string | url路径 | |
obj.query | object | url参数对象 | |
[obj.target] | string | "'_blank'" | 新开窗口 |
Example
import { winOpen } from '@wont/utils'
winOpen({path: 'https://wont-org.github.io', query: {a:'1',b:'2'}}) // 新开窗口路径为 'https://wont-org.github.io?a=1&b=2'