最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

electron-vue 用默认浏览器打开链接

运维笔记admin28浏览0评论

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>
发布评论

评论列表(0)

  1. 暂无评论