Skip to content

Instantly share code, notes, and snippets.

@jensendarren
Created February 11, 2020 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jensendarren/ad05d0bac2890310811bc5c9ea432d84 to your computer and use it in GitHub Desktop.
Save jensendarren/ad05d0bac2890310811bc5c9ea432d84 to your computer and use it in GitHub Desktop.
A basic VueJS Rapid Prototyping Example
<!--Make sure to install @vue/cli-service-global first-->
<!--Serve this up using `vue serve` at the command line-->
<!--Details here: https://cli.vuejs.org/guide/prototyping.html -->
<template>
<h1>Hello {{name}}</h1>
</template>
<script>
export default {
data() {
return {
name: 'Dadou'
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment