mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-15 04:42:23 +08:00
43 lines
1.0 KiB
Vue
43 lines
1.0 KiB
Vue
<template>
|
|
<div
|
|
ref="doc"
|
|
class="n-doc"
|
|
>
|
|
<div class="n-doc-header">
|
|
<n-gradient-text :font-size="20">
|
|
Naive UI
|
|
</n-gradient-text>
|
|
</div>
|
|
<div class="n-doc-body">
|
|
<div class="n-doc-section">
|
|
<div class="n-doc-section__header">
|
|
TuSimple Vue-Based Frontend Component Library
|
|
</div>
|
|
<div class="n-doc-section__text-content">
|
|
<a href="https://***REMOVED***/naive-ui">Code Repo(GitHub Enterprise)</a><br>
|
|
<a href="https://gist.github.com/brianclements/841ea7bffdb01346392c">Git Commit Style(!important)</a><br>
|
|
<a href="https://github.com/angular/angular/commits/master">Git Commit Style Example</a><br>
|
|
<a
|
|
href="https://***REMOVED***/naive-ui"
|
|
target="_black"
|
|
>Installation</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import docCodeEditorMixin from './docCodeEditorMixin'
|
|
export default {
|
|
mixins: [docCodeEditorMixin],
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|