This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.yodlee-check-image img { | |
width: 100%; | |
} | |
.srt { | |
border: 0; | |
clip: rect(0 0 0 0); | |
height: 1px; | |
margin: -1px; | |
overflow: hidden; | |
padding: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ____________________________________________________________________________ | |
# | | | |
# | .:: BOOT & PREPARE ::. | | |
# |____________________________________________________________________________| | |
# increase font size due to 4k display | |
setfont latarcyrheb-sun32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
/** | |
* This file automagically writes the redirects into firebase.json for all the files in the api folder for the respective firebase functions. | |
* You won't need to change this file. | |
* Fursther instructions can be found here: https://codeburst.io/organizing-your-firebase-cloud-functions-67dc17b3b0da | |
*/ | |
const glob = require('glob') | |
const camelCase = require('camelcase') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// in /src/plugins/ directory | |
import Vue from 'vue' | |
const Example = { | |
install (Vue, options) { | |
Vue.prototype.$methodName = (param) => { | |
// Your code here. | |
} | |
Vue.prototype.$methodName1 = (param1, param2) => { | |
// Your code here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// store/modules/example.js | |
const state = { | |
example: null | |
} | |
const mutations = { | |
setExample: function (state, payload) { | |
state.example = payload | |
} | |
} |