├── .gitignore ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── NOTICE ├── README.md ├── example-tabs.png ├── index.js ├── package.json └── template ├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── build ├── dev.js ├── prod.js ├── webpack.config.dev.js └── webpack.config.prod.js ├── config.xml ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package-lock.json ├── package.json ├── res ├── icon │ ├── android │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ └── drawable-xxxhdpi-icon.png │ ├── ios │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ ├── windows │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-240.png │ │ ├── Square30x30Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-240.png │ │ ├── Square70x70Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-240.png │ │ ├── Wide310x150Logo.scale-100.png │ │ └── Wide310x150Logo.scale-240.png │ └── wp8 │ │ ├── ApplicationIcon.png │ │ └── Background.png └── screen │ ├── android │ ├── drawable-land-hdpi-screen.png │ ├── drawable-land-ldpi-screen.png │ ├── drawable-land-mdpi-screen.png │ ├── drawable-land-xhdpi-screen.png │ ├── drawable-land-xxhdpi-screen.png │ ├── drawable-land-xxxhdpi-screen.png │ ├── drawable-port-hdpi-screen.png │ ├── drawable-port-ldpi-screen.png │ ├── drawable-port-mdpi-screen.png │ ├── drawable-port-xhdpi-screen.png │ ├── drawable-port-xxhdpi-screen.png │ └── drawable-port-xxxhdpi-screen.png │ ├── ios │ ├── Default-568h@2x~iphone.png │ ├── Default-667h.png │ ├── Default-736h.png │ ├── Default-Landscape-736h.png │ ├── Default-Landscape@2x~ipad.png │ ├── Default-Landscape~ipad.png │ ├── Default-Portrait@2x~ipad.png │ ├── Default-Portrait~ipad.png │ ├── Default@2x~iphone.png │ └── Default~iphone.png │ ├── windows │ ├── SplashScreen.scale-100.png │ └── SplashScreenPhone.scale-240.png │ └── wp8 │ └── screen-portrait.jpg ├── src ├── App.vue ├── assets │ └── .gitkeep ├── css │ ├── app.css │ └── icons.css ├── main.js ├── pages │ ├── About.vue │ ├── Home.vue │ ├── Services.vue │ ├── Tabs.vue │ └── not-found.vue └── routes.js └── static └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/README.md -------------------------------------------------------------------------------- /example-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/example-tabs.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/.postcssrc.js -------------------------------------------------------------------------------- /template/build/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/build/dev.js -------------------------------------------------------------------------------- /template/build/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/build/prod.js -------------------------------------------------------------------------------- /template/build/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/build/webpack.config.dev.js -------------------------------------------------------------------------------- /template/build/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/build/webpack.config.prod.js -------------------------------------------------------------------------------- /template/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/config.xml -------------------------------------------------------------------------------- /template/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/config/dev.env.js -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/config/index.js -------------------------------------------------------------------------------- /template/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/package-lock.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/package.json -------------------------------------------------------------------------------- /template/res/icon/android/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/android/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /template/res/icon/android/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/android/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /template/res/icon/android/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/android/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /template/res/icon/android/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/android/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /template/res/icon/android/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/android/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /template/res/icon/android/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/android/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-40.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-40@2x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-50.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-50@2x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-60.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-60@2x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-60@3x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-72@2x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-76.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-76@2x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-small.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-small@2x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon-small@3x.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon.png -------------------------------------------------------------------------------- /template/res/icon/ios/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/ios/icon@2x.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /template/res/icon/windows/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /template/res/icon/windows/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /template/res/icon/windows/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/windows/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /template/res/icon/wp8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/wp8/ApplicationIcon.png -------------------------------------------------------------------------------- /template/res/icon/wp8/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/icon/wp8/Background.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/android/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/android/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-667h.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-736h.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-Landscape-736h.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default@2x~iphone.png -------------------------------------------------------------------------------- /template/res/screen/ios/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/ios/Default~iphone.png -------------------------------------------------------------------------------- /template/res/screen/windows/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/windows/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /template/res/screen/windows/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/windows/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /template/res/screen/wp8/screen-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/res/screen/wp8/screen-portrait.jpg -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/src/css/app.css: -------------------------------------------------------------------------------- 1 | /* Your app styles here */ 2 | -------------------------------------------------------------------------------- /template/src/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/css/icons.css -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/src/pages/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/pages/About.vue -------------------------------------------------------------------------------- /template/src/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/pages/Home.vue -------------------------------------------------------------------------------- /template/src/pages/Services.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/pages/Services.vue -------------------------------------------------------------------------------- /template/src/pages/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/pages/Tabs.vue -------------------------------------------------------------------------------- /template/src/pages/not-found.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/pages/not-found.vue -------------------------------------------------------------------------------- /template/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-template-vue-f7-tabs/HEAD/template/src/routes.js -------------------------------------------------------------------------------- /template/static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------