Skip to content

Instantly share code, notes, and snippets.

@thulioph
Last active April 20, 2017 19:08
Show Gist options
  • Select an option

  • Save thulioph/1f8cd51298dbc2d8c0a41a2c29a3172f to your computer and use it in GitHub Desktop.

Select an option

Save thulioph/1f8cd51298dbc2d8c0a41a2c29a3172f to your computer and use it in GitHub Desktop.
Post about the Vuejs.
<template>
<div id="app">
<h1>{{message}}</h1>
</div>
</template>
<script>
export default {
data() {
return {
message: 'Hello World!',
};
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment