├── .babelrc ├── .gitignore ├── .postcssrc.js ├── README.md ├── build ├── build.js ├── check-versions.js ├── dev-client.js ├── dev-server.js ├── utils.js ├── vue-loader.conf.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package-lock.json ├── package.json ├── src ├── app.vue ├── assets │ ├── card1.jpg │ ├── card2.jpg │ ├── card3.jpg │ └── photo1.jpg ├── css │ └── app.css ├── main.js ├── pages │ ├── Cards.vue │ ├── about.vue │ ├── accordion.vue │ ├── animation.vue │ ├── autocomplete.vue │ ├── calendarDatepicker.vue │ ├── chipsTags.vue │ ├── colorThemes.vue │ ├── contacts.vue │ ├── coreFeatures.vue │ ├── floatingAction │ │ ├── floatingAction.vue │ │ ├── speedDial.vue │ │ └── staticFloating.vue │ ├── forms │ │ ├── buttons.vue │ │ ├── checkboxesAndRadios.vue │ │ ├── formElements.vue │ │ ├── formStorage.vue │ │ ├── forms.vue │ │ └── smartSelects.vue │ ├── grid.vue │ ├── icons.vue │ ├── infiniteScroll.vue │ ├── lazyLoadImages.vue │ ├── listView.vue │ ├── loginScreen │ │ ├── loginScreen.vue │ │ └── loginScreenEmbedded.vue │ ├── mainPage.vue │ ├── mediaList.vue │ ├── messages.vue │ ├── modals.vue │ ├── navbarsAndToolbars │ │ ├── deep2.vue │ │ ├── deep3.vue │ │ ├── deepNavbar.vue │ │ ├── diffScrollTabbar.vue │ │ ├── hide.vue │ │ ├── hideBarsOnScroll.vue │ │ ├── hideBoth.vue │ │ ├── hideNavbar.vue │ │ ├── hideToolbar.vue │ │ ├── navbarsAndToolbars.vue │ │ ├── subNavbar.vue │ │ ├── tab1.vue │ │ ├── tab2.vue │ │ ├── tab3.vue │ │ ├── tab4.vue │ │ ├── tabbar.vue │ │ └── tabbarWithLabel.vue │ ├── notifications.vue │ ├── photoBrowser.vue │ ├── picker.vue │ ├── popover.vue │ ├── preloader.vue │ ├── progressBar.vue │ ├── pullToRefresh.vue │ ├── searchBar.vue │ ├── sidePanels │ │ ├── panelRight2.vue │ │ ├── panelRight3.vue │ │ └── sidePanels.vue │ ├── sortableList.vue │ ├── swipeToDelete.vue │ ├── swiperSlider │ │ ├── 3DCoverflow.vue │ │ ├── 3DCube.vue │ │ ├── 3DFlip.vue │ │ ├── controlGallery.vue │ │ ├── customSwiper.vue │ │ ├── fadeEffect.vue │ │ ├── fractionPagination.vue │ │ ├── loopSlider.vue │ │ ├── multipleSlider.vue │ │ ├── nestedSliders.vue │ │ ├── parallax.vue │ │ ├── progressPagination.vue │ │ ├── scrollbarSwiper.vue │ │ ├── sliderLazyloading.vue │ │ ├── spaceBetweenSwiper.vue │ │ ├── swiperHorizontal.vue │ │ ├── swiperSlider.vue │ │ ├── swiperVertical.vue │ │ └── zoom.vue │ ├── tabs │ │ ├── animatedTabs.vue │ │ ├── staticTabs.vue │ │ ├── swipeableTabs.vue │ │ └── tabs.vue │ ├── timeline │ │ ├── calendarTimeline.vue │ │ ├── horizontalTimeline.vue │ │ ├── timeline.vue │ │ └── verticalTimeline.vue │ ├── transitions.vue │ └── virtualList.vue └── routes.js └── static ├── .gitkeep ├── data └── autocomplete-languages.json └── image ├── 1024.jpg ├── animal1.jpg ├── bScenery4.jpg ├── beach.jpg ├── bnightlife2.jpg ├── bscenery1.jpg ├── bscenery2.jpg ├── bscenery3.jpg ├── bscenery5.jpg ├── bscenery6.jpg ├── bscenery7.jpg ├── bscenery8.jpg ├── bscenery9.jpg ├── icon.png ├── lock.jpg ├── monkey.jpg ├── mountains.jpg ├── nightlife1.jpg ├── nightlife2.jpg ├── nightlife3.jpg ├── nightlife4.jpg ├── nightlife5.jpg ├── nightlife6.jpg ├── nightlife7.jpg ├── photo1.jpg ├── photo10.jpg ├── photo11.jpg ├── photo12.jpg ├── photo13.jpg ├── photo14.jpg ├── photo2.jpg ├── photo3.jpg ├── photo4.jpg ├── photo5.jpg ├── photo6.jpg ├── photo7.jpg ├── photo8.jpg ├── photo9.jpg ├── scenery1.jpg ├── scenery10.jpg ├── scenery11.jpg ├── scenery2.jpg ├── scenery3.jpg ├── scenery4.jpg ├── scenery5.jpg ├── scenery6.jpg ├── scenery7.jpg ├── scenery8.jpg ├── scenery9.jpg ├── slider1.jpg ├── slider2.jpg ├── slider3.jpg ├── slider4.jpg ├── slider5.jpg ├── slider6.jpg ├── slider7.jpg ├── slider8.jpg ├── slider9.jpg ├── xlscenery1.jpg ├── xlscenery10.jpg ├── xlscenery2.jpg ├── xlscenery3.jpg ├── xlscenery4.jpg ├── xlscenery5.jpg ├── xlscenery6.jpg ├── xlscenery7.jpg ├── xlscenery8.jpg └── xlscenery9.jpg /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { "modules": false }], 4 | "stage-2" 5 | ], 6 | "plugins": ["transform-runtime"], 7 | "comments": false, 8 | "env": { 9 | "test": { 10 | "presets": ["env", "stage-2"], 11 | "plugins": [ "istanbul" ] 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | .DS_Store 40 | node_modules/ 41 | dist/ 42 | npm-debug.log -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | // to edit target browsers: use "browserlist" field in package.json 6 | "autoprefixer": {} 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 使用Framework7-Vue重构的Framework7官网 Demo 2 | 3 | Framwork7-Vue 将 Framework7 和 Vue 结合起来,但官方文档有些地方描述的不清楚,而且在实际开发中也可能会遇到各种各样的问题,所以我就使用Framework7-Vue 重构了官网的 Demo,同时对重构过程中遇到的问题和解决方案写了几篇博客,博客地址:https://yawuling.com/tags/framework7/ 4 | 5 | ## 运行程序 6 | 7 | ``` bash 8 | # install dependencies 9 | npm install 10 | 11 | # serve with hot reload at localhost:8080 12 | npm run dev 13 | 14 | # build for production with minification 15 | npm run build 16 | ``` 17 | 18 | ## 项目结构 19 | 20 | * `src/assets` - 静态资源(图片)目录 21 | * `src/css` - css文件目录 22 | * `src/pages` - app的页面目录 23 | * `src/main.js` - 引入包并初始化App 24 | * `src/routes.js` - App的路由控制 25 | * `src/app.vue` 26 | 27 | > 之前把Demo重构完后就以为工作结束了,后面一看,发现没有加上自己写的关于Framework7的博客地址,另外也没有很好地对这个项目做个简介,不好意思,现在才补上 28 | -------------------------------------------------------------------------------- /build/build.js: -------------------------------------------------------------------------------- 1 | require('./check-versions')() 2 | 3 | process.env.NODE_ENV = 'production' 4 | 5 | var ora = require('ora') 6 | var rm = require('rimraf') 7 | var path = require('path') 8 | var chalk = require('chalk') 9 | var webpack = require('webpack') 10 | var config = require('../config') 11 | var webpackConfig = require('./webpack.prod.conf') 12 | 13 | var spinner = ora('building for production...') 14 | spinner.start() 15 | 16 | rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => { 17 | if (err) throw err 18 | webpack(webpackConfig, function (err, stats) { 19 | spinner.stop() 20 | if (err) throw err 21 | process.stdout.write(stats.toString({ 22 | colors: true, 23 | modules: false, 24 | children: false, 25 | chunks: false, 26 | chunkModules: false 27 | }) + '\n\n') 28 | 29 | console.log(chalk.cyan(' Build complete.\n')) 30 | console.log(chalk.yellow( 31 | ' Tip: built files are meant to be served over an HTTP server.\n' + 32 | ' Opening index.html over file:// won\'t work.\n' 33 | )) 34 | }) 35 | }) 36 | -------------------------------------------------------------------------------- /build/check-versions.js: -------------------------------------------------------------------------------- 1 | var chalk = require('chalk') 2 | var semver = require('semver') 3 | var packageConfig = require('../package.json') 4 | 5 | function exec (cmd) { 6 | return require('child_process').execSync(cmd).toString().trim() 7 | } 8 | 9 | var versionRequirements = [ 10 | { 11 | name: 'node', 12 | currentVersion: semver.clean(process.version), 13 | versionRequirement: packageConfig.engines.node 14 | }, 15 | { 16 | name: 'npm', 17 | currentVersion: exec('npm --version'), 18 | versionRequirement: packageConfig.engines.npm 19 | } 20 | ] 21 | 22 | module.exports = function () { 23 | var warnings = [] 24 | for (var i = 0; i < versionRequirements.length; i++) { 25 | var mod = versionRequirements[i] 26 | if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) { 27 | warnings.push(mod.name + ': ' + 28 | chalk.red(mod.currentVersion) + ' should be ' + 29 | chalk.green(mod.versionRequirement) 30 | ) 31 | } 32 | } 33 | 34 | if (warnings.length) { 35 | console.log('') 36 | console.log(chalk.yellow('To use this template, you must update following to modules:')) 37 | console.log() 38 | for (var i = 0; i < warnings.length; i++) { 39 | var warning = warnings[i] 40 | console.log(' ' + warning) 41 | } 42 | console.log() 43 | process.exit(1) 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /build/dev-client.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | require('eventsource-polyfill') 3 | var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') 4 | 5 | hotClient.subscribe(function (event) { 6 | if (event.action === 'reload') { 7 | window.location.reload() 8 | } 9 | }) 10 | -------------------------------------------------------------------------------- /build/dev-server.js: -------------------------------------------------------------------------------- 1 | require('./check-versions')() 2 | 3 | var config = require('../config') 4 | if (!process.env.NODE_ENV) { 5 | process.env.NODE_ENV = JSON.parse(config.dev.env.NODE_ENV) 6 | } 7 | 8 | var opn = require('opn') 9 | var path = require('path') 10 | var express = require('express') 11 | var webpack = require('webpack') 12 | var proxyMiddleware = require('http-proxy-middleware') 13 | var webpackConfig = require('./webpack.dev.conf') 14 | 15 | // default port where dev server listens for incoming traffic 16 | var port = process.env.PORT || config.dev.port 17 | // automatically open browser, if not set will be false 18 | var autoOpenBrowser = !!config.dev.autoOpenBrowser 19 | // Define HTTP proxies to your custom API backend 20 | // https://github.com/chimurai/http-proxy-middleware 21 | var proxyTable = config.dev.proxyTable 22 | 23 | var app = express() 24 | var compiler = webpack(webpackConfig) 25 | 26 | var devMiddleware = require('webpack-dev-middleware')(compiler, { 27 | publicPath: webpackConfig.output.publicPath, 28 | quiet: true 29 | }) 30 | 31 | var hotMiddleware = require('webpack-hot-middleware')(compiler, { 32 | log: () => {} 33 | }) 34 | // force page reload when html-webpack-plugin template changes 35 | compiler.plugin('compilation', function (compilation) { 36 | compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) { 37 | hotMiddleware.publish({ action: 'reload' }) 38 | cb() 39 | }) 40 | }) 41 | 42 | // proxy api requests 43 | Object.keys(proxyTable).forEach(function (context) { 44 | var options = proxyTable[context] 45 | if (typeof options === 'string') { 46 | options = { target: options } 47 | } 48 | app.use(proxyMiddleware(options.filter || context, options)) 49 | }) 50 | 51 | // handle fallback for HTML5 history API 52 | app.use(require('connect-history-api-fallback')()) 53 | 54 | // serve webpack bundle output 55 | app.use(devMiddleware) 56 | 57 | // enable hot-reload and state-preserving 58 | // compilation error display 59 | app.use(hotMiddleware) 60 | 61 | // serve pure static assets 62 | var staticPath = path.posix.join(config.dev.assetsPublicPath, config.dev.assetsSubDirectory) 63 | app.use(staticPath, express.static('./static')) 64 | 65 | var uri = 'http://localhost:' + port 66 | 67 | devMiddleware.waitUntilValid(function () { 68 | console.log('> Listening at ' + uri + '\n') 69 | }) 70 | 71 | module.exports = app.listen(port, function (err) { 72 | if (err) { 73 | console.log(err) 74 | return 75 | } 76 | 77 | // when env is testing, don't need open it 78 | if (autoOpenBrowser && process.env.NODE_ENV !== 'testing') { 79 | opn(uri) 80 | } 81 | }) 82 | -------------------------------------------------------------------------------- /build/utils.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var config = require('../config') 3 | var ExtractTextPlugin = require('extract-text-webpack-plugin') 4 | 5 | exports.assetsPath = function (_path) { 6 | var assetsSubDirectory = process.env.NODE_ENV === 'production' 7 | ? config.build.assetsSubDirectory 8 | : config.dev.assetsSubDirectory 9 | return path.posix.join(assetsSubDirectory, _path) 10 | } 11 | 12 | exports.cssLoaders = function (options) { 13 | options = options || {} 14 | 15 | var cssLoader = { 16 | loader: 'css-loader', 17 | options: { 18 | minimize: process.env.NODE_ENV === 'production', 19 | sourceMap: options.sourceMap 20 | } 21 | } 22 | 23 | // generate loader string to be used with extract text plugin 24 | function generateLoaders (loader, loaderOptions) { 25 | var loaders = [cssLoader] 26 | if (loader) { 27 | loaders.push({ 28 | loader: loader + '-loader', 29 | options: Object.assign({}, loaderOptions, { 30 | sourceMap: options.sourceMap 31 | }) 32 | }) 33 | } 34 | 35 | // Extract CSS when that option is specified 36 | // (which is the case during production build) 37 | if (options.extract) { 38 | return ExtractTextPlugin.extract({ 39 | use: loaders, 40 | fallback: 'vue-style-loader', 41 | publicPath: '../../' 42 | }) 43 | } else { 44 | return ['vue-style-loader'].concat(loaders) 45 | } 46 | } 47 | 48 | // http://vuejs.github.io/vue-loader/en/configurations/extract-css.html 49 | return { 50 | css: generateLoaders(), 51 | postcss: generateLoaders(), 52 | less: generateLoaders('less'), 53 | sass: generateLoaders('sass', { indentedSyntax: true }), 54 | scss: generateLoaders('sass'), 55 | stylus: generateLoaders('stylus'), 56 | styl: generateLoaders('stylus') 57 | } 58 | } 59 | 60 | // Generate loaders for standalone style files (outside of .vue) 61 | exports.styleLoaders = function (options) { 62 | var output = [] 63 | var loaders = exports.cssLoaders(options) 64 | for (var extension in loaders) { 65 | var loader = loaders[extension] 66 | output.push({ 67 | test: new RegExp('\\.' + extension + '$'), 68 | use: loader 69 | }) 70 | } 71 | return output 72 | } 73 | -------------------------------------------------------------------------------- /build/vue-loader.conf.js: -------------------------------------------------------------------------------- 1 | var utils = require('./utils') 2 | var config = require('../config') 3 | var isProduction = process.env.NODE_ENV === 'production' 4 | 5 | module.exports = { 6 | loaders: utils.cssLoaders({ 7 | sourceMap: isProduction 8 | ? config.build.productionSourceMap 9 | : config.dev.cssSourceMap, 10 | extract: isProduction 11 | }) 12 | } 13 | -------------------------------------------------------------------------------- /build/webpack.base.conf.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var utils = require('./utils') 3 | var config = require('../config') 4 | var vueLoaderConfig = require('./vue-loader.conf') 5 | 6 | function resolve (dir) { 7 | return path.join(__dirname, '..', dir) 8 | } 9 | 10 | module.exports = { 11 | entry: { 12 | app: './src/main.js' 13 | }, 14 | output: { 15 | path: config.build.assetsRoot, 16 | filename: '[name].js', 17 | publicPath: process.env.NODE_ENV === 'production' 18 | ? config.build.assetsPublicPath 19 | : config.dev.assetsPublicPath 20 | }, 21 | resolve: { 22 | extensions: ['.js', '.vue', '.json'], 23 | alias: { 24 | 'vue$': 'vue/dist/vue.esm.js', 25 | '@': resolve('src'), 26 | } 27 | }, 28 | module: { 29 | rules: [ 30 | { 31 | test: /\.vue$/, 32 | loader: 'vue-loader', 33 | options: vueLoaderConfig 34 | }, 35 | { 36 | test: /\.js$/, 37 | loader: 'babel-loader', 38 | include: [resolve('src'), resolve('test')] 39 | }, 40 | { 41 | test: /\.(png|jpe?g|gif|svg)(\?.*)?$/, 42 | loader: 'url-loader', 43 | query: { 44 | limit: 10000, 45 | name: utils.assetsPath('img/[name].[hash:7].[ext]') 46 | } 47 | }, 48 | { 49 | test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, 50 | loader: 'url-loader', 51 | query: { 52 | limit: 10000, 53 | name: utils.assetsPath('fonts/[name].[hash:7].[ext]') 54 | } 55 | } 56 | ] 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /build/webpack.dev.conf.js: -------------------------------------------------------------------------------- 1 | var utils = require('./utils') 2 | var webpack = require('webpack') 3 | var config = require('../config') 4 | var merge = require('webpack-merge') 5 | var baseWebpackConfig = require('./webpack.base.conf') 6 | var HtmlWebpackPlugin = require('html-webpack-plugin') 7 | var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin') 8 | 9 | // add hot-reload related code to entry chunks 10 | Object.keys(baseWebpackConfig.entry).forEach(function (name) { 11 | baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name]) 12 | }) 13 | 14 | module.exports = merge(baseWebpackConfig, { 15 | module: { 16 | rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap }) 17 | }, 18 | // cheap-module-eval-source-map is faster for development 19 | devtool: '#cheap-module-eval-source-map', 20 | plugins: [ 21 | new webpack.DefinePlugin({ 22 | 'process.env': config.dev.env 23 | }), 24 | // https://github.com/glenjamin/webpack-hot-middleware#installation--usage 25 | new webpack.HotModuleReplacementPlugin(), 26 | new webpack.NoEmitOnErrorsPlugin(), 27 | // https://github.com/ampedandwired/html-webpack-plugin 28 | new HtmlWebpackPlugin({ 29 | filename: 'index.html', 30 | template: 'index.html', 31 | inject: true 32 | }), 33 | new FriendlyErrorsPlugin() 34 | ] 35 | }) 36 | -------------------------------------------------------------------------------- /build/webpack.prod.conf.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var utils = require('./utils') 3 | var webpack = require('webpack') 4 | var config = require('../config') 5 | var merge = require('webpack-merge') 6 | var baseWebpackConfig = require('./webpack.base.conf') 7 | var CopyWebpackPlugin = require('copy-webpack-plugin') 8 | var HtmlWebpackPlugin = require('html-webpack-plugin') 9 | var ExtractTextPlugin = require('extract-text-webpack-plugin') 10 | var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin') 11 | 12 | var env = config.build.env 13 | 14 | var webpackConfig = merge(baseWebpackConfig, { 15 | module: { 16 | rules: utils.styleLoaders({ 17 | sourceMap: config.build.productionSourceMap, 18 | extract: true 19 | }) 20 | }, 21 | devtool: config.build.productionSourceMap ? '#source-map' : false, 22 | output: { 23 | path: config.build.assetsRoot, 24 | filename: utils.assetsPath('js/[name].[chunkhash].js'), 25 | chunkFilename: utils.assetsPath('js/[id].[chunkhash].js') 26 | }, 27 | plugins: [ 28 | // http://vuejs.github.io/vue-loader/en/workflow/production.html 29 | new webpack.DefinePlugin({ 30 | 'process.env': env 31 | }), 32 | new webpack.optimize.UglifyJsPlugin({ 33 | compress: { 34 | warnings: false 35 | }, 36 | sourceMap: true 37 | }), 38 | // extract css into its own file 39 | new ExtractTextPlugin({ 40 | filename: utils.assetsPath('css/[name].[contenthash].css') 41 | }), 42 | // Compress extracted CSS. We are using this plugin so that possible 43 | // duplicated CSS from different components can be deduped. 44 | new OptimizeCSSPlugin(), 45 | // generate dist index.html with correct asset hash for caching. 46 | // you can customize output by editing /index.html 47 | // see https://github.com/ampedandwired/html-webpack-plugin 48 | new HtmlWebpackPlugin({ 49 | filename: config.build.index, 50 | template: 'index.html', 51 | inject: true, 52 | minify: { 53 | removeComments: true, 54 | collapseWhitespace: true, 55 | removeAttributeQuotes: true 56 | // more options: 57 | // https://github.com/kangax/html-minifier#options-quick-reference 58 | }, 59 | // necessary to consistently work with multiple chunks via CommonsChunkPlugin 60 | chunksSortMode: 'dependency' 61 | }), 62 | // split vendor js into its own file 63 | new webpack.optimize.CommonsChunkPlugin({ 64 | name: 'vendor', 65 | minChunks: function (module, count) { 66 | // any required modules inside node_modules are extracted to vendor 67 | return ( 68 | module.resource && 69 | /\.js$/.test(module.resource) && 70 | module.resource.indexOf( 71 | path.join(__dirname, '../node_modules') 72 | ) === 0 73 | ) 74 | } 75 | }), 76 | // extract webpack runtime and module manifest to its own file in order to 77 | // prevent vendor hash from being updated whenever app bundle is updated 78 | new webpack.optimize.CommonsChunkPlugin({ 79 | name: 'manifest', 80 | chunks: ['vendor'] 81 | }), 82 | // copy custom static assets 83 | new CopyWebpackPlugin([ 84 | { 85 | from: path.resolve(__dirname, '../static'), 86 | to: config.build.assetsSubDirectory, 87 | ignore: ['.*'] 88 | } 89 | ]) 90 | ] 91 | }) 92 | 93 | if (config.build.productionGzip) { 94 | var CompressionWebpackPlugin = require('compression-webpack-plugin') 95 | 96 | webpackConfig.plugins.push( 97 | new CompressionWebpackPlugin({ 98 | asset: '[path].gz[query]', 99 | algorithm: 'gzip', 100 | test: new RegExp( 101 | '\\.(' + 102 | config.build.productionGzipExtensions.join('|') + 103 | ')$' 104 | ), 105 | threshold: 10240, 106 | minRatio: 0.8 107 | }) 108 | ) 109 | } 110 | 111 | if (config.build.bundleAnalyzerReport) { 112 | var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin 113 | webpackConfig.plugins.push(new BundleAnalyzerPlugin()) 114 | } 115 | 116 | module.exports = webpackConfig 117 | -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | var merge = require('webpack-merge') 2 | var prodEnv = require('./prod.env') 3 | 4 | module.exports = merge(prodEnv, { 5 | NODE_ENV: '"development"' 6 | }) 7 | -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | // see http://vuejs-templates.github.io/webpack for documentation. 2 | var path = require('path') 3 | 4 | module.exports = { 5 | build: { 6 | env: require('./prod.env'), 7 | index: path.resolve(__dirname, '../dist/index.html'), 8 | assetsRoot: path.resolve(__dirname, '../dist'), 9 | assetsSubDirectory: 'static', 10 | assetsPublicPath: '', 11 | productionSourceMap: true, 12 | // Gzip off by default as many popular static hosts such as 13 | // Surge or Netlify already gzip all static assets for you. 14 | // Before setting to `true`, make sure to: 15 | // npm install --save-dev compression-webpack-plugin 16 | productionGzip: false, 17 | productionGzipExtensions: ['js', 'css'], 18 | // Run the build command with an extra argument to 19 | // View the bundle analyzer report after build finishes: 20 | // `npm run build --report` 21 | // Set to `true` or `false` to always turn it on or off 22 | bundleAnalyzerReport: process.env.npm_config_report 23 | }, 24 | dev: { 25 | env: require('./dev.env'), 26 | port: 8080, 27 | autoOpenBrowser: true, 28 | assetsSubDirectory: 'static', 29 | assetsPublicPath: '/', 30 | proxyTable: {}, 31 | // CSS Sourcemaps off by default because relative paths are "buggy" 32 | // with this option, according to the CSS-Loader README 33 | // (https://github.com/webpack/css-loader#sourcemaps) 34 | // In our experience, they generally work as expected, 35 | // just be aware of this issue when enabling this option. 36 | cssSourceMap: false 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | My App 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-framework7", 3 | "version": "1.0.0", 4 | "description": "Framework7 Vue + Webpack starter app template", 5 | "scripts": { 6 | "dev": "node build/dev-server.js", 7 | "build": "node build/build.js" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/yawuling/vue-framework7.git" 12 | }, 13 | "keywords": [ 14 | "ios", 15 | "webpack", 16 | "framework7", 17 | "vue", 18 | "vuejs", 19 | "material", 20 | "mobile", 21 | "app", 22 | "f7" 23 | ], 24 | "author": "yawuling", 25 | "license": "MIT", 26 | "bugs": { 27 | "url": "https://github.com/yawuling/vue-framework7/issues" 28 | }, 29 | "dependencies": { 30 | "framework7": "^1.6.4", 31 | "framework7-icons": "^0.8.9", 32 | "framework7-vue": "^0.9.2", 33 | "less": "^2.7.2", 34 | "less-loader": "^4.0.5", 35 | "vue": "^2.2.4" 36 | }, 37 | "devDependencies": { 38 | "autoprefixer": "^6.7.2", 39 | "babel-core": "^6.22.1", 40 | "babel-loader": "^6.2.10", 41 | "babel-plugin-transform-runtime": "^6.22.0", 42 | "babel-preset-env": "^1.2.1", 43 | "babel-preset-stage-2": "^6.22.0", 44 | "babel-register": "^6.22.0", 45 | "chalk": "^1.1.3", 46 | "connect-history-api-fallback": "^1.3.0", 47 | "copy-webpack-plugin": "^4.0.1", 48 | "css-loader": "^0.26.1", 49 | "eventsource-polyfill": "^0.9.6", 50 | "express": "^4.14.1", 51 | "extract-text-webpack-plugin": "^2.0.0", 52 | "file-loader": "^0.10.0", 53 | "friendly-errors-webpack-plugin": "^1.1.3", 54 | "function-bind": "^1.1.0", 55 | "html-webpack-plugin": "^2.28.0", 56 | "http-proxy-middleware": "^0.17.3", 57 | "opn": "^4.0.2", 58 | "optimize-css-assets-webpack-plugin": "^1.3.0", 59 | "ora": "^1.1.0", 60 | "rimraf": "^2.6.0", 61 | "semver": "^5.3.0", 62 | "url-loader": "^0.5.7", 63 | "vue-loader": "^11.1.4", 64 | "vue-style-loader": "^2.0.0", 65 | "vue-template-compiler": "^2.2.4", 66 | "webpack": "^2.2.1", 67 | "webpack-bundle-analyzer": "^2.2.1", 68 | "webpack-dev-middleware": "^1.10.0", 69 | "webpack-hot-middleware": "^2.16.1", 70 | "webpack-merge": "^2.6.1" 71 | }, 72 | "engines": { 73 | "node": ">= 4.0.0", 74 | "npm": ">= 3.0.0" 75 | }, 76 | "browserslist": [ 77 | "> 1%", 78 | "last 2 versions", 79 | "not ie <= 8" 80 | ] 81 | } 82 | -------------------------------------------------------------------------------- /src/assets/card1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/src/assets/card1.jpg -------------------------------------------------------------------------------- /src/assets/card2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/src/assets/card2.jpg -------------------------------------------------------------------------------- /src/assets/card3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/src/assets/card3.jpg -------------------------------------------------------------------------------- /src/assets/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/src/assets/photo1.jpg -------------------------------------------------------------------------------- /src/css/app.css: -------------------------------------------------------------------------------- 1 | /* ========= 2 | Your custom styles go here 3 | ========= */ 4 | html.ios-gt-8 .contacts-block .list-group-title{ 5 | font-weight: 500; 6 | } 7 | html.ios-gt-8 .list-block.media-list .item-title{ 8 | font-weight: 500; 9 | } -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | // Import Vue 2 | import Vue from 'vue' 3 | 4 | // Import F7 5 | import Framework7 from 'framework7' 6 | 7 | // Import F7 Vue Plugin 8 | import Framework7Vue from 'framework7-vue' 9 | 10 | // Import F7 iOS Theme Styles 11 | import Framework7Theme from 'framework7/dist/css/framework7.ios.min.css' 12 | import Framework7ThemeColors from 'framework7/dist/css/framework7.ios.colors.min.css' 13 | /* OR for Material Theme: 14 | import Framework7Theme from 'framework7/dist/css/framework7.material.min.css' 15 | import Framework7ThemeColors from 'framework7/dist/css/framework7.material.colors.min.css' 16 | */ 17 | 18 | import Framework7Icons from 'framework7-icons/css/framework7-icons.css' 19 | 20 | // Import App Custom Styles 21 | import AppStyles from './css/app.css' 22 | 23 | 24 | // Import Routes 25 | import Routes from './routes.js' 26 | 27 | // Import App Component 28 | import App from './app' 29 | 30 | // Init F7 Vue Plugin 31 | Vue.use(Framework7Vue) 32 | 33 | // Init App 34 | new Vue({ 35 | el: '#app', 36 | template: '', 37 | // Init Framework7 by passing parameters here 38 | framework7: { 39 | root: '#app', 40 | dynamicNavbar: true, 41 | animateNavBackIcon: true, 42 | /** 43 | * the page should be saved in router history: 44 | * pushState: true, 45 | * pushStateSeparator: '', 46 | * 47 | * the default of pushStateSeparator is '#!/' 48 | */ 49 | /* Uncomment to enable Material theme: */ 50 | // material: true, 51 | routes: Routes 52 | }, 53 | // Register App Component 54 | components: { 55 | app: App 56 | } 57 | }); 58 | -------------------------------------------------------------------------------- /src/pages/about.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 20 | -------------------------------------------------------------------------------- /src/pages/animation.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 67 | 68 | 71 | -------------------------------------------------------------------------------- /src/pages/calendarDatepicker.vue: -------------------------------------------------------------------------------- 1 | 59 | 60 | < 133 | 134 | 142 | -------------------------------------------------------------------------------- /src/pages/chipsTags.vue: -------------------------------------------------------------------------------- 1 | 43 | 44 | 49 | 50 | 53 | -------------------------------------------------------------------------------- /src/pages/colorThemes.vue: -------------------------------------------------------------------------------- 1 | 66 | 67 | 85 | 86 | 118 | -------------------------------------------------------------------------------- /src/pages/contacts.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 57 | 58 | 60 | -------------------------------------------------------------------------------- /src/pages/coreFeatures.vue: -------------------------------------------------------------------------------- 1 | 58 | 59 | 64 | 65 | 68 | -------------------------------------------------------------------------------- /src/pages/floatingAction/floatingAction.vue: -------------------------------------------------------------------------------- 1 | 26 | 27 | 32 | 33 | 36 | -------------------------------------------------------------------------------- /src/pages/floatingAction/speedDial.vue: -------------------------------------------------------------------------------- 1 | 39 | 40 | 45 | 46 | 49 | -------------------------------------------------------------------------------- /src/pages/floatingAction/staticFloating.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 31 | 32 | 35 | -------------------------------------------------------------------------------- /src/pages/forms/buttons.vue: -------------------------------------------------------------------------------- 1 | 86 | 87 | 92 | 93 | 96 | -------------------------------------------------------------------------------- /src/pages/forms/formStorage.vue: -------------------------------------------------------------------------------- 1 | 72 | 73 | 82 | 83 | 86 | -------------------------------------------------------------------------------- /src/pages/forms/forms.vue: -------------------------------------------------------------------------------- 1 | 38 | 39 | 44 | 45 | 48 | -------------------------------------------------------------------------------- /src/pages/forms/smartSelects.vue: -------------------------------------------------------------------------------- 1 | 54 | 55 | 60 | 61 | 64 | -------------------------------------------------------------------------------- /src/pages/grid.vue: -------------------------------------------------------------------------------- 1 | 132 | 133 | 138 | 139 | 151 | -------------------------------------------------------------------------------- /src/pages/infiniteScroll.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 50 | 51 | 54 | -------------------------------------------------------------------------------- /src/pages/loginScreen/loginScreen.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 27 | 28 | 31 | -------------------------------------------------------------------------------- /src/pages/loginScreen/loginScreenEmbedded.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 43 | 44 | 47 | -------------------------------------------------------------------------------- /src/pages/messages.vue: -------------------------------------------------------------------------------- 1 | 30 | 31 | 138 | 139 | 145 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/deep2.vue: -------------------------------------------------------------------------------- 1 | 25 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/deep3.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 39 | 40 | 43 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/deepNavbar.vue: -------------------------------------------------------------------------------- 1 | 22 | 23 | 28 | 29 | 32 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/diffScrollTabbar.vue: -------------------------------------------------------------------------------- 1 | 49 | 50 | 60 | 61 | 86 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/hide.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 44 | 45 | 48 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/hideBarsOnScroll.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 28 | 29 | 32 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/hideBoth.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 21 | 22 | 25 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/hideNavbar.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/hideToolbar.vue: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/navbarsAndToolbars.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 56 | 57 | 60 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/subNavbar.vue: -------------------------------------------------------------------------------- 1 | 26 | 27 | 36 | 37 | 40 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/tab1.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 22 | 23 | 26 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/tab2.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 21 | 22 | 25 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/tab3.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 21 | 22 | 25 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/tab4.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 21 | 22 | 25 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/tabbar.vue: -------------------------------------------------------------------------------- 1 | 46 | 47 | 52 | 53 | 85 | -------------------------------------------------------------------------------- /src/pages/navbarsAndToolbars/tabbarWithLabel.vue: -------------------------------------------------------------------------------- 1 | 50 | 51 | 56 | 57 | 89 | -------------------------------------------------------------------------------- /src/pages/notifications.vue: -------------------------------------------------------------------------------- 1 | 27 | 28 | 69 | 70 | 73 | -------------------------------------------------------------------------------- /src/pages/photoBrowser.vue: -------------------------------------------------------------------------------- 1 | 87 | 88 | 134 | 135 | 138 | -------------------------------------------------------------------------------- /src/pages/popover.vue: -------------------------------------------------------------------------------- 1 | 27 | 28 | 33 | 34 | 37 | -------------------------------------------------------------------------------- /src/pages/preloader.vue: -------------------------------------------------------------------------------- 1 | 66 | 67 | 97 | 98 | 101 | -------------------------------------------------------------------------------- /src/pages/pullToRefresh.vue: -------------------------------------------------------------------------------- 1 | 26 | 27 | 69 | 70 | 73 | -------------------------------------------------------------------------------- /src/pages/searchBar.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 37 | 38 | 41 | -------------------------------------------------------------------------------- /src/pages/sidePanels/panelRight2.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 20 | 21 | 24 | -------------------------------------------------------------------------------- /src/pages/sidePanels/panelRight3.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 20 | 21 | 24 | -------------------------------------------------------------------------------- /src/pages/sidePanels/sidePanels.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 31 | 32 | 35 | -------------------------------------------------------------------------------- /src/pages/sortableList.vue: -------------------------------------------------------------------------------- 1 | 33 | 34 | 119 | 120 | 123 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/3DCoverflow.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 55 | 56 | 72 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/3DCube.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 55 | 56 | 72 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/3DFlip.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 55 | 56 | 72 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/controlGallery.vue: -------------------------------------------------------------------------------- 1 | 28 | 29 | 66 | 67 | 101 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/customSwiper.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 34 | 35 | 63 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/fadeEffect.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 31 | 32 | 47 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/fractionPagination.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 23 | 24 | 36 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/loopSlider.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 23 | 24 | 36 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/multipleSlider.vue: -------------------------------------------------------------------------------- 1 | 35 | 36 | 46 | 47 | 76 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/nestedSliders.vue: -------------------------------------------------------------------------------- 1 | 31 | 32 | 37 | 38 | 53 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/parallax.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 50 | 51 | 94 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/progressPagination.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 23 | 24 | 36 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/scrollbarSwiper.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 23 | 24 | 36 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/sliderLazyloading.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 37 | 38 | 66 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/spaceBetweenSwiper.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 23 | 24 | 36 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/swiperHorizontal.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 23 | 24 | 36 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/swiperSlider.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 89 | 90 | 93 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/swiperVertical.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 23 | 24 | 36 | -------------------------------------------------------------------------------- /src/pages/swiperSlider/zoom.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 36 | 37 | 52 | -------------------------------------------------------------------------------- /src/pages/tabs/animatedTabs.vue: -------------------------------------------------------------------------------- 1 | 58 | 59 | 64 | 65 | 68 | -------------------------------------------------------------------------------- /src/pages/tabs/staticTabs.vue: -------------------------------------------------------------------------------- 1 | 58 | 59 | 64 | 65 | 68 | -------------------------------------------------------------------------------- /src/pages/tabs/swipeableTabs.vue: -------------------------------------------------------------------------------- 1 | 58 | 59 | 64 | 65 | 68 | -------------------------------------------------------------------------------- /src/pages/tabs/tabs.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 39 | 40 | 43 | -------------------------------------------------------------------------------- /src/pages/timeline/horizontalTimeline.vue: -------------------------------------------------------------------------------- 1 | 42 | 43 | 178 | 179 | 190 | -------------------------------------------------------------------------------- /src/pages/timeline/timeline.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 38 | 39 | 42 | -------------------------------------------------------------------------------- /src/pages/transitions.vue: -------------------------------------------------------------------------------- 1 | 28 | 29 | 34 | 35 | 38 | -------------------------------------------------------------------------------- /src/pages/virtualList.vue: -------------------------------------------------------------------------------- 1 | 34 | 35 | 63 | 64 | 67 | -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/.gitkeep -------------------------------------------------------------------------------- /static/image/1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/1024.jpg -------------------------------------------------------------------------------- /static/image/animal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/animal1.jpg -------------------------------------------------------------------------------- /static/image/bScenery4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bScenery4.jpg -------------------------------------------------------------------------------- /static/image/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/beach.jpg -------------------------------------------------------------------------------- /static/image/bnightlife2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bnightlife2.jpg -------------------------------------------------------------------------------- /static/image/bscenery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery1.jpg -------------------------------------------------------------------------------- /static/image/bscenery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery2.jpg -------------------------------------------------------------------------------- /static/image/bscenery3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery3.jpg -------------------------------------------------------------------------------- /static/image/bscenery5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery5.jpg -------------------------------------------------------------------------------- /static/image/bscenery6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery6.jpg -------------------------------------------------------------------------------- /static/image/bscenery7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery7.jpg -------------------------------------------------------------------------------- /static/image/bscenery8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery8.jpg -------------------------------------------------------------------------------- /static/image/bscenery9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/bscenery9.jpg -------------------------------------------------------------------------------- /static/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/icon.png -------------------------------------------------------------------------------- /static/image/lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/lock.jpg -------------------------------------------------------------------------------- /static/image/monkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/monkey.jpg -------------------------------------------------------------------------------- /static/image/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/mountains.jpg -------------------------------------------------------------------------------- /static/image/nightlife1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/nightlife1.jpg -------------------------------------------------------------------------------- /static/image/nightlife2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/nightlife2.jpg -------------------------------------------------------------------------------- /static/image/nightlife3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/nightlife3.jpg -------------------------------------------------------------------------------- /static/image/nightlife4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/nightlife4.jpg -------------------------------------------------------------------------------- /static/image/nightlife5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/nightlife5.jpg -------------------------------------------------------------------------------- /static/image/nightlife6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/nightlife6.jpg -------------------------------------------------------------------------------- /static/image/nightlife7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/nightlife7.jpg -------------------------------------------------------------------------------- /static/image/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo1.jpg -------------------------------------------------------------------------------- /static/image/photo10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo10.jpg -------------------------------------------------------------------------------- /static/image/photo11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo11.jpg -------------------------------------------------------------------------------- /static/image/photo12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo12.jpg -------------------------------------------------------------------------------- /static/image/photo13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo13.jpg -------------------------------------------------------------------------------- /static/image/photo14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo14.jpg -------------------------------------------------------------------------------- /static/image/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo2.jpg -------------------------------------------------------------------------------- /static/image/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo3.jpg -------------------------------------------------------------------------------- /static/image/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo4.jpg -------------------------------------------------------------------------------- /static/image/photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo5.jpg -------------------------------------------------------------------------------- /static/image/photo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo6.jpg -------------------------------------------------------------------------------- /static/image/photo7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo7.jpg -------------------------------------------------------------------------------- /static/image/photo8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo8.jpg -------------------------------------------------------------------------------- /static/image/photo9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/photo9.jpg -------------------------------------------------------------------------------- /static/image/scenery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery1.jpg -------------------------------------------------------------------------------- /static/image/scenery10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery10.jpg -------------------------------------------------------------------------------- /static/image/scenery11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery11.jpg -------------------------------------------------------------------------------- /static/image/scenery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery2.jpg -------------------------------------------------------------------------------- /static/image/scenery3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery3.jpg -------------------------------------------------------------------------------- /static/image/scenery4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery4.jpg -------------------------------------------------------------------------------- /static/image/scenery5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery5.jpg -------------------------------------------------------------------------------- /static/image/scenery6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery6.jpg -------------------------------------------------------------------------------- /static/image/scenery7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery7.jpg -------------------------------------------------------------------------------- /static/image/scenery8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery8.jpg -------------------------------------------------------------------------------- /static/image/scenery9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/scenery9.jpg -------------------------------------------------------------------------------- /static/image/slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider1.jpg -------------------------------------------------------------------------------- /static/image/slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider2.jpg -------------------------------------------------------------------------------- /static/image/slider3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider3.jpg -------------------------------------------------------------------------------- /static/image/slider4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider4.jpg -------------------------------------------------------------------------------- /static/image/slider5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider5.jpg -------------------------------------------------------------------------------- /static/image/slider6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider6.jpg -------------------------------------------------------------------------------- /static/image/slider7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider7.jpg -------------------------------------------------------------------------------- /static/image/slider8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider8.jpg -------------------------------------------------------------------------------- /static/image/slider9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/slider9.jpg -------------------------------------------------------------------------------- /static/image/xlscenery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery1.jpg -------------------------------------------------------------------------------- /static/image/xlscenery10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery10.jpg -------------------------------------------------------------------------------- /static/image/xlscenery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery2.jpg -------------------------------------------------------------------------------- /static/image/xlscenery3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery3.jpg -------------------------------------------------------------------------------- /static/image/xlscenery4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery4.jpg -------------------------------------------------------------------------------- /static/image/xlscenery5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery5.jpg -------------------------------------------------------------------------------- /static/image/xlscenery6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery6.jpg -------------------------------------------------------------------------------- /static/image/xlscenery7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery7.jpg -------------------------------------------------------------------------------- /static/image/xlscenery8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery8.jpg -------------------------------------------------------------------------------- /static/image/xlscenery9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yawuling/vue-framework7/d35e98f549d1b7b6bebb1d46def72134c8946d2d/static/image/xlscenery9.jpg --------------------------------------------------------------------------------