├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .postcssrc.js ├── .temp ├── entry.js └── router.js ├── README.md ├── android.config.json ├── configs ├── config.js ├── helper.js ├── logo.png ├── plugin.js ├── utils.js ├── vue-loader.conf.js ├── webpack.common.conf.js ├── webpack.dev.conf.js ├── webpack.prod.conf.js ├── webpack.release.conf.js └── webpack.test.conf.js ├── dist ├── index.js ├── index.web.js └── vendor.web.js ├── ios.config.json ├── package.json ├── platforms └── platforms.json ├── plugins └── plugins.json ├── src ├── components │ ├── HelloWorld.vue │ ├── chart.js │ └── renderer.js ├── entry.js ├── index.vue └── router.js ├── test └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── index.spec.js ├── web ├── assets │ ├── preview.css │ └── qrcode.js ├── index.html └── preview.html └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.temp/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/.temp/entry.js -------------------------------------------------------------------------------- /.temp/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/.temp/router.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/README.md -------------------------------------------------------------------------------- /android.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/android.config.json -------------------------------------------------------------------------------- /configs/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/config.js -------------------------------------------------------------------------------- /configs/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/helper.js -------------------------------------------------------------------------------- /configs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/logo.png -------------------------------------------------------------------------------- /configs/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/plugin.js -------------------------------------------------------------------------------- /configs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/utils.js -------------------------------------------------------------------------------- /configs/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/vue-loader.conf.js -------------------------------------------------------------------------------- /configs/webpack.common.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/webpack.common.conf.js -------------------------------------------------------------------------------- /configs/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/webpack.dev.conf.js -------------------------------------------------------------------------------- /configs/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/webpack.prod.conf.js -------------------------------------------------------------------------------- /configs/webpack.release.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/webpack.release.conf.js -------------------------------------------------------------------------------- /configs/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/configs/webpack.test.conf.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/dist/index.web.js -------------------------------------------------------------------------------- /dist/vendor.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/dist/vendor.web.js -------------------------------------------------------------------------------- /ios.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/ios.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/package.json -------------------------------------------------------------------------------- /platforms/platforms.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/plugins/plugins.json -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/src/components/chart.js -------------------------------------------------------------------------------- /src/components/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/src/components/renderer.js -------------------------------------------------------------------------------- /src/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/src/entry.js -------------------------------------------------------------------------------- /src/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/src/index.vue -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/src/router.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/test/unit/karma.conf.js -------------------------------------------------------------------------------- /test/unit/specs/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/test/unit/specs/index.spec.js -------------------------------------------------------------------------------- /web/assets/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/web/assets/preview.css -------------------------------------------------------------------------------- /web/assets/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/web/assets/qrcode.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/web/index.html -------------------------------------------------------------------------------- /web/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/web/preview.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouyn/weex-F2-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------