├── .gitignore ├── scripts ├── template │ ├── page.ttml │ ├── utils.wxs │ └── base.ttml └── index.js ├── dist ├── pages │ ├── page-entry │ │ ├── index.ttml │ │ └── index.ttss │ └── page-second │ │ ├── index.ttml │ │ └── index.js ├── project.config.json ├── app.json ├── runtime.js.map ├── runtime.js ├── base.ttml └── app.js ├── .prettierrc.js ├── src ├── index.ts ├── short-cut.ts ├── hooks.ts ├── util.ts ├── render.ts ├── native-components.ts ├── interface.ts ├── hydrate.ts ├── createPageConfig.ts ├── createAppConfig.ts ├── host-config.ts └── taro-element.ts ├── .editorconfig ├── SUPPORT.md ├── demo ├── project.config.json ├── app.config.json ├── pages │ ├── page-entry │ │ ├── index.css │ │ └── index.tsx │ └── page-second │ │ └── index.tsx ├── app.ts ├── util.ts └── component │ └── test-comp.tsx ├── global.d.ts ├── package.json ├── tsconfig.json ├── README.md ├── webpack.config.js └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode/ 3 | yarn.lock -------------------------------------------------------------------------------- /scripts/template/page.ttml: -------------------------------------------------------------------------------- 1 | 2 |