tiny-vue_version0/examples/sites/demos/pc/app/link/config-href.vue

14 lines
248 B
Vue

<template>
<tiny-link :underline="false" href="localhost:3000/#/zh-CN/index" target="_blank">默认链接</tiny-link>
</template>
<script>
import { Link } from '@opentiny/vue'
export default {
components: {
TinyLink: Link
}
}
</script>