在src的文件夹下配置一个App根组件

  1. <template>
  2. <div>
  3. <h1>测试App根组件</h1>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name:'',
  9. data () {
  10. return {
  11. }
  12. },
  13. components: {
  14. }
  15. }
  16. </script>

render

使用render函数将app根组件渲染到页面上去,去替换div.app里面的内容

  1. render(h) {
  2. return h(App)
  3. },

image.png

在app中使用组件

1.先导入组件
2.注册组件
3.导入组件

  1. <template>
  2. <div>
  3. <h1>测试App根组件</h1>
  4. <login></login>
  5. </div>
  6. </template>
  7. <script>
  8. import login from "../components/Login.vue"
  9. export default {
  10. name:'',
  11. data () {
  12. return {
  13. }
  14. },
  15. components: {
  16. login
  17. }
  18. }
  19. </script>