Vue.js初学备忘录(二)

可能是人老了接受能力变弱了~~总之Vue的调用真是绕晕我,不过也相信后面慢慢会能掌握使用,这次Mark一下这两天新建项目的梳理。

一、修改端口号:找到config文件夹下面的index.js文件,修改里面的参数即可

  // Various Dev Server settings
    host: 'localhost', // can be overwritten by process.env.HOST
    port: 8099, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
    autoOpenBrowser: false,
    errorOverlay: true,
    notifyOnErrors: true,
    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-

二、xx.html 和xx.vue

做前端的都对html很熟悉了,Vue.js即提供了html的也提供自己的vue写法,下面对比一下:

1、xx.html:这里用默认的开始项index.html文件作为示范



 
   
   
    test-pro2
   

   
 
 
   


     
   

   

     

测试:{{ message }}


   

   
 
 

2、xx.vue:这里用App.vue作为示范


1和2的效果图如下:

Vue.js初学备忘录(二)_第1张图片

三、既然有心学习vue,我们就要学会怎么引入使用组件这个概念,不能依赖于自己熟悉的html页面

我们先把index.html修改一下,删除刚刚上面写的html写法,剩下vue需要的



 
   
   
    test-pro2
   
 
 
   


     
   

 

1、在components下我们新建两个组件

Vue.js初学备忘录(二)_第2张图片

2、TestComponent1.vue






3、TestComponent2.vue:





4、在App.vue:引用上面写好的组件写好组件的引用方法名





效果图如下:

Vue.js初学备忘录(二)_第3张图片

如果这些文件关系还不是很清楚的话,可以参考这篇文章:

 

https://blog.csdn.net/zbl744949461/article/details/80476888#commentBox

 

 

你可能感兴趣的:(JS相关)