naive-ui/demo/components/startPage.vue
2019-06-28 19:00:00 +08:00

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>