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