naive-ui/demo/components/demoScaffold.vue
2019-06-13 19:17:41 +08:00

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>