mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-14 07:10:43 +08:00
18 lines
389 B
Vue
18 lines
389 B
Vue
<template>
|
|
<n-button quaternary @click="handleClick" title="说明文档">
|
|
<n-icon size="20" :depth="1">
|
|
<document-text-icon></document-text-icon>
|
|
</n-icon>
|
|
</n-button>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { openDoc } from '@/utils'
|
|
import { icon } from '@/plugins'
|
|
const { DocumentTextIcon } = icon.ionicons5
|
|
|
|
const handleClick = () => {
|
|
openDoc()
|
|
}
|
|
</script>
|