Skip to content

Instantly share code, notes, and snippets.

View thearabbit's full-sized avatar

Yuom Theara thearabbit

  • Rabbit Training Center
  • Battambambang, Cambodia.
View GitHub Profile
@ErikCH
ErikCH / vue3
Created February 10, 2020 04:15
<div id="app"></div>
<script src="vue.global.js"></script>
<script>
const MyComponent = {
data: {
name: 'Erik'
},
template: `<h1>{{ name }}</h1>`
}