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
<template> | |
<div> | |
<input type="file" @change="avatarChange" class="uploadIcon"> | |
</div> | |
</template> | |
<script> | |
export default { |
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
<template> | |
<div> | |
<p>Reference Number: {{referenceNumber}} | |
</div> | |
</template> | |
<script> | |
export default { | |
data: function () { | |
return { |
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
let pressTimer = null; | |
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
// Create timeout ( run function after 1s ) | |
let start = (e) => { | |
// Make sure the event trigger isn't a click event | |
if (e.type === 'click' && e.button !== 0) { | |
return; | |
} | |
// Make sure we don't currently have a setTimeout running | |
// before starting another | |
if (pressTimer === null) { |
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
let cancel = (e) => { | |
// Check if timer has a value or not | |
if (pressTimer !== null) { | |
clearTimeout(pressTimer) | |
pressTimer = null | |
} | |
} |
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
// Define variable | |
let pressTimer = null; | |
// Create timeout ( run function after 1s ) | |
let start = (e) => { | |
if (e.type === 'click' && e.button !== 0) { | |
return; | |
} |
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
Vue.directive('longpress', { | |
bind: function (el, binding, vNode) { | |
// Make sure expression provided is a function | |
if (typeof binding.value !== 'function') { | |
// Fetch name of component | |
const compName = vNode.context.name | |
// pass warning to console | |
let warn = `[longpress:] provided expression '${binding.expression}' is not a function, but has to be` | |
if (compName) { warn += `Found in component '${compName}' ` } |
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
// import Vue | |
import Vue from 'vue'; | |
// import Vuex | |
import Vuex from 'vuex'; | |
// Install the Vuex plugin on vue | |
Vue.use(Vuex); | |
// create a Vuex store instance | |
export const store = new Vuex.Store({ |
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
<template> | |
<main> | |
<h1>Cart Content</h1> | |
<p>{{cartValue}}</p> | |
</main> | |
</template> | |
<script> | |
// Import Vuex Store into Component | |
import store from 'store.js'; |
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
<template> | |
<main> | |
<h1>Cart Content</h1> | |
<p>{{cartValue}}</p> | |
</main> | |
</template> | |
<script> | |
export default { | |
computed: { |
OlderNewer