Vue学习(1)

vue初始化项目

npm init   初始化一个项目
npm install vue  然后安装vue

初始化会产生一个pacakge.json的文件,这个文件用来描述项目的依赖
执行完 npm install vue之后,会产生一个node_modules文件夹,其中存放着项目的依赖。此时项目的结构如下:


image.png

pacakge.json文件中的内容如下:
描述了项目的一些信息

{
  "name": "vue-stydy",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "vue": "^2.5.16"
  }
}

箭头函数

    


vue实现todolist





    
    
    
    Document



    
    
  • {{todo}}

你可能感兴趣的:(Vue学习(1))