参考文档链接

​http://taro-docs.jd.com/taro/docs/README/index.html​

​https://taro-ui.aotu.io/#/docs/quickstart​

 

基础:

​https://docs.taro.zone/docs/guide#%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B​

 

 

  全局安装脚手架

npm install -g @tarojs/cli

  创建项目 taro_test,会生成一个taro_test文件价

taro init taro_test

  然后会有一个配置项 按照需要的填写,它会自动安装node包

taro新体验_ide

 项目目录

 

taro新体验_ide_02

 

 

  安装taro-ui

cd taro_test
npm install taro-ui

  会生成目录

taro新体验_命令行_03

 

运行程序,在package.json文件中,运行对应命令行,运行程序。一个简单的程序就生成了。

taro新体验_vue_04

需要注意的问题:

pages中

最少有两个文件,一个是.vue文件,另一个是对应的.config.js文件,他们的命令需要一致

hot.vue/hot.config.js

index.vue/index.config,js

taro新体验_taro_05