Skip to content

Instantly share code, notes, and snippets.

@Vanawy
Created March 16, 2020 20:18
Show Gist options
  • Save Vanawy/8e69c8275afa75d75b7bd927723cdc69 to your computer and use it in GitHub Desktop.
Save Vanawy/8e69c8275afa75d75b7bd927723cdc69 to your computer and use it in GitHub Desktop.
TicTacToe
<div id="app">
<game></game>
</div>
Vue.component("game", {
data: function(){
return {
state
};
},
template: `
<div>
<p></p>
</div>
`
});
let app = new Vue({
el: "#app",
data: {
name: "Vanawy",
},
computed: {
greetings: function(){
return `Hello, ${this.name}!`
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment