Here are the steps I used to add vue-play to my vue-cli webpack project. These instructions assume a directory structure like this:
.
├── build
└── src
├── components
#!/bin/bash | |
# Copy files from and to Google Compute Engine instances | |
# Automatically looks up the correct zone and uses ~/.ssh/id_rsa | |
# Usage | |
# gscp ./some.file some-instance-name:some-directory | |
# gscp some-instance-name:some-directory ./some.file | |
for project in $(gcloud projects list | grep -v PROJECT_ID | cut -d' ' -f 1); do | |
PROJECT=$project |
Here are the steps I used to add vue-play to my vue-cli webpack project. These instructions assume a directory structure like this:
.
├── build
└── src
├── components
{ | |
"regiones": [ | |
{ | |
"region": "Arica y Parinacota", | |
"comunas": ["Arica", "Camarones", "Putre", "General Lagos"] | |
}, | |
{ | |
"region": "Tarapacá", | |
"comunas": ["Iquique", "Alto Hospicio", "Pozo Almonte", "Camiña", "Colchane", "Huara", "Pica"] | |
}, |
/* | |
A simple little SCSS mixin for creating scrim gradients | |
Inspired by Andreas Larson - https://github.com/larsenwork | |
https://css-tricks.com/easing-linear-gradients/ | |
*/ | |
@mixin scrimGradient($startColor: $color-black, $direction: 'to bottom') { | |
$scrimCoordinates: ( |