template
<template>
<div>
<p>官网地址:
<!-- <a href="http://www.yunlauncher" target="_blank">http://www.yunlauncher</a> -->
<span @click="openUrl">http://www.yunlauncher</span>
</p>
</div>
</template>
js
<script>
import { shell } from 'electron'
export default {
data () {
return {
}
},
methods: {
openUrl () {
shell.openExternal('http://www.yunlauncher')
}
}
}
</script>
template
<template>
<div>
<p>官网地址:
<!-- <a href="http://www.yunlauncher" target="_blank">http://www.yunlauncher</a> -->
<span @click="openUrl">http://www.yunlauncher</span>
</p>
</div>
</template>
js
<script>
import { shell } from 'electron'
export default {
data () {
return {
}
},
methods: {
openUrl () {
shell.openExternal('http://www.yunlauncher')
}
}
}
</script>