├── .gitignore ├── README.md ├── index.js ├── package.json └── template ├── class.art └── hooks.art /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | ./type 3 | 4 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpzxgcr/taro-create-page/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpzxgcr/taro-create-page/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpzxgcr/taro-create-page/HEAD/package.json -------------------------------------------------------------------------------- /template/class.art: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpzxgcr/taro-create-page/HEAD/template/class.art -------------------------------------------------------------------------------- /template/hooks.art: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpzxgcr/taro-create-page/HEAD/template/hooks.art --------------------------------------------------------------------------------