Skip to content

Instantly share code, notes, and snippets.

@Svtter
Created November 6, 2018 06:12
Show Gist options
  • Save Svtter/5532d3bb7b2790a0f8599d761e6d46c2 to your computer and use it in GitHub Desktop.
Save Svtter/5532d3bb7b2790a0f8599d761e6d46c2 to your computer and use it in GitHub Desktop.
vue-cli instant prototyping example file.
<template>
<div id="app">
<h1>test</h1>
<p>{{ greeting }} world!</p>
</div>
</template>
<script>
export default {
data: function () {
return {
greeting: 'Hello'
}
}
}
</script>
<style scoped>
p {
font-size: 2em;
text-align: center;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment