docs: update style guide (#8677)

This commit is contained in:
neverland 2021-05-08 09:48:49 +08:00 committed by GitHub
parent a69fb5f1eb
commit 4391f86aa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,12 +135,14 @@ export default {
export default {
name: '',
mixins: [],
components: {},
props: {},
emits: [],
setup() {},
data() {},
computed: {},
@ -151,7 +153,7 @@ export default {
mounted() {},
destroyed() {},
unmounted() {},
methods: {},
};
@ -190,9 +192,7 @@ export default {
单文件组件应该总是让顶级标签的顺序保持一致,且标签之间留有空行。
```html
<template>
...
</template>
<template> ... </template>
<script>
/* ... */