├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── package.json └── www ├── css ├── app.css └── icons.css ├── index.html └── js └── app.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/package.json -------------------------------------------------------------------------------- /www/css/app.css: -------------------------------------------------------------------------------- 1 | /* Your app styles here */ 2 | -------------------------------------------------------------------------------- /www/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/www/css/icons.css -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/framework7io/framework7-template-vue-simple/HEAD/www/js/app.js --------------------------------------------------------------------------------