├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── dist ├── index.html └── static │ ├── css │ ├── app.75244917bdefff0e5d9a92a39fc1eae4.css │ └── app.75244917bdefff0e5d9a92a39fc1eae4.css.map │ ├── img │ └── geo.32ddd1e.png │ └── js │ ├── app.d60344e557f499a9547e.js │ ├── app.d60344e557f499a9547e.js.map │ ├── manifest.9917e112c527ec91a1a0.js │ ├── manifest.9917e112c527ec91a1a0.js.map │ ├── vendor.5bc3a0d7fdba158c43d4.js │ └── vendor.5bc3a0d7fdba158c43d4.js.map ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ ├── geo.png │ ├── logo.png │ └── style.css ├── components │ ├── Black.vue │ ├── Flor1.vue │ ├── Flor2.vue │ ├── Flor3.vue │ └── White.vue └── main.js ├── static └── .gitkeep ├── test ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/config/test.env.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/static/css/app.75244917bdefff0e5d9a92a39fc1eae4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/css/app.75244917bdefff0e5d9a92a39fc1eae4.css -------------------------------------------------------------------------------- /dist/static/css/app.75244917bdefff0e5d9a92a39fc1eae4.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/css/app.75244917bdefff0e5d9a92a39fc1eae4.css.map -------------------------------------------------------------------------------- /dist/static/img/geo.32ddd1e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/img/geo.32ddd1e.png -------------------------------------------------------------------------------- /dist/static/js/app.d60344e557f499a9547e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/js/app.d60344e557f499a9547e.js -------------------------------------------------------------------------------- /dist/static/js/app.d60344e557f499a9547e.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/js/app.d60344e557f499a9547e.js.map -------------------------------------------------------------------------------- /dist/static/js/manifest.9917e112c527ec91a1a0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/js/manifest.9917e112c527ec91a1a0.js -------------------------------------------------------------------------------- /dist/static/js/manifest.9917e112c527ec91a1a0.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/js/manifest.9917e112c527ec91a1a0.js.map -------------------------------------------------------------------------------- /dist/static/js/vendor.5bc3a0d7fdba158c43d4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/js/vendor.5bc3a0d7fdba158c43d4.js -------------------------------------------------------------------------------- /dist/static/js/vendor.5bc3a0d7fdba158c43d4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/dist/static/js/vendor.5bc3a0d7fdba158c43d4.js.map -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/assets/geo.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/assets/style.css -------------------------------------------------------------------------------- /src/components/Black.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/components/Black.vue -------------------------------------------------------------------------------- /src/components/Flor1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/components/Flor1.vue -------------------------------------------------------------------------------- /src/components/Flor2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/components/Flor2.vue -------------------------------------------------------------------------------- /src/components/Flor3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/components/Flor3.vue -------------------------------------------------------------------------------- /src/components/White.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/components/White.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/src/main.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/unit/karma.conf.js -------------------------------------------------------------------------------- /test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/test/unit/specs/Hello.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/vue-wine-label/HEAD/yarn.lock --------------------------------------------------------------------------------