Skip to content

Instantly share code, notes, and snippets.

@IniZio
Created November 16, 2016 23:18
Show Gist options
  • Save IniZio/06bfa30c36c1da82c5978f4baa2ed2bf to your computer and use it in GitHub Desktop.
Save IniZio/06bfa30c36c1da82c5978f4baa2ed2bf to your computer and use it in GitHub Desktop.
<template>
<!-- HTML template part -->
<div id="app">
<h1>{{Title}}</h1>
<p>bla bla bla bla</p>
</app>
</template>
<script>
// JS part
export default {
data() {
return {
Title: 'Hello World'
}
}
}
</script>
<style lang="sass">
/* Style part (lang can be sass, scss, stylus, other style languages supported by webpack loaders) */
#app {
color: red;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment