文件 xx.vue,xx文件名,使用大驼峰

1、template 内 写 html ,注意添加div

2、script 写 vue核心功能, 注意name 和 引入子组件

3、style 写css格式

<template>

</template>

<script>
    export default {

    }
</script>

<style>

</style>