<template> <text @click="openURL" :href="href"> <slot></slot> </text> </template> <script> export default { name: "uni-link", props: { href: { type: String } }, methods: { openURL() { // #ifdef APP-PLUS plus.runtime.openWeb(this.href) //这里默认使用外部浏览器打开而不是内部web-view组件打开 // #endif } } } </script> <style lang="less"></style>