mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
31 lines
441 B
Vue
31 lines
441 B
Vue
<template>
|
|
<div class="doc">
|
|
<h1>scaffold</h1>
|
|
<hr>
|
|
<h2>基本用法</h2>
|
|
scaffold
|
|
<br>
|
|
<textarea rows="5">scaffold</textarea>
|
|
<hr>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import docCodeEditorMixin from './docCodeEditorMixin'
|
|
export default {
|
|
mixins: [docCodeEditorMixin]
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.doc {
|
|
width: 900px;
|
|
margin: auto;
|
|
textarea {
|
|
width: 100%;
|
|
min-height: 3em;
|
|
}
|
|
}
|
|
|
|
</style>
|