This file contains hidden or 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> | |
<v-btn depressed large color="primary" @click="increment">Increment</v-btn> | |
<v-btn depressed large color="#E91E63" @click="decrement">Decrement</v-btn> | |
<v-btn depressed large color="#3F51B5" @click="reset">Reset</v-btn> | |
<h1>Count is: {{ counter.count }}, double is: {{ counter.double }}</h1> | |
<SpinnerMultiplication :count="counter.updatedCount" /> | |
</div> | |
</template> |
This file contains hidden or 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
vagrant gatling-rsync-auto |
This file contains hidden or 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
yarn add @zeit/next-sass node-sass |
This file contains hidden or 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
cd vagrant/ubuntu | |
vagrant plugin install vagrant-rsync-back |
This file contains hidden or 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
sudo apt-get install -y nodejs npm |
This file contains hidden or 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
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4 |
This file contains hidden or 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
history.pushState(null, null, null); | |
$(window).on("popstate", function (event) { | |
if (!event.originalEvent.state) { | |
history.pushState(null, null, null); | |
return; | |
} | |
}); |
This file contains hidden or 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
export default class Index extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
name: '', | |
email: '', | |
password: '' | |
}; | |
this.handleChangeText = this.handleChangeText.bind(this); |
This file contains hidden or 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
export default class Index extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
animal: '' | |
}; | |
this.handleChangeRadio = this.handleChangeRadio.bind(this); | |
this.onSubmit = this.onSubmit.bind(this); | |
} |
This file contains hidden or 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
export default class Index extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
fruit: new Array(4).fill(null) | |
}; | |
this.handleChangecheckbox = this.handleChangecheckbox.bind(this); | |
this.onSubmit = this.onSubmit.bind(this); | |
} |
NewerOlder