naive-ui/demo/utils/EditOnGithubHeader.vue
2021-06-09 02:27:40 +08:00

69 lines
1.2 KiB
Vue

<template>
<n-h1 :id="id" class="naive-doc-title">
<span>{{ text }}</span>
<span class="edit-button">
<n-tooltip placement="right">
<template #trigger>
<edit-on-github-button
text
class="edit-button"
:relative-url="relativeUrl"
/>
</template>
{{ t('editOnGithub') }}
</n-tooltip>
</span>
</n-h1>
</template>
<script>
import { i18n } from '../utils/composables'
import EditOnGithubButton from './EditOnGithubButton.vue'
export default {
name: 'EditOnGithubHeader',
components: {
EditOnGithubButton
},
props: {
relativeUrl: {
type: String,
required: true
},
text: {
type: String,
required: true
}
},
setup () {
return {
...i18n({
'zh-CN': {
editOnGithub: '在 GitHub 上编辑'
},
'en-US': {
editOnGithub: 'Edit on GitHub'
}
})
}
},
computed: {
id () {
return this.text.replace(/ /g, '-')
}
}
}
</script>
<style scoped>
.naive-doc-title {
display: flex;
}
.naive-doc-title .edit-button {
margin-left: 4px;
display: inline-flex;
align-items: center;
}
</style>