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>
发布者:admin,转转请注明出处:http://www.yc00.com/web/1741133831a4312625.html
评论列表(0条)