template

<template>
	<div>
		<p>官网地址:
			<!-- <a href="http://www.yunlauncher.com" target="_blank">http://www.yunlauncher.com</a> -->
			<span @click="openUrl">http://www.yunlauncher.com</span>
		</p>
	</div>
</template>

js

<script>
import { shell } from 'electron'
export default {
  data () {
    return {
    }
  },
  methods: {
    openUrl () {
      shell.openExternal('http://www.yunlauncher.com')
    }
  }
}
</script>
Logo

前往低代码交流专区

更多推荐