admin管理员组

文章数量:1026520

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>

本文标签: 浏览器链接ElectronVue