├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── package.json ├── src ├── app.js ├── app.vue ├── css │ ├── app.css │ └── icons.css ├── index.html ├── pages │ ├── about.vue │ ├── dynamic-route.vue │ ├── form.vue │ ├── home.vue │ ├── not-found.vue │ ├── panel-left.vue │ └── panel-right.vue └── routes.js └── static └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/app.js -------------------------------------------------------------------------------- /src/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/app.vue -------------------------------------------------------------------------------- /src/css/app.css: -------------------------------------------------------------------------------- 1 | /* Your app styles here */ -------------------------------------------------------------------------------- /src/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/css/icons.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/pages/about.vue -------------------------------------------------------------------------------- /src/pages/dynamic-route.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/pages/dynamic-route.vue -------------------------------------------------------------------------------- /src/pages/form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/pages/form.vue -------------------------------------------------------------------------------- /src/pages/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/pages/home.vue -------------------------------------------------------------------------------- /src/pages/not-found.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/pages/not-found.vue -------------------------------------------------------------------------------- /src/pages/panel-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/pages/panel-left.vue -------------------------------------------------------------------------------- /src/pages/panel-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/pages/panel-right.vue -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-webpack/HEAD/src/routes.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------