Created
February 11, 2020 07:40
-
-
Save jensendarren/ad05d0bac2890310811bc5c9ea432d84 to your computer and use it in GitHub Desktop.
A basic VueJS Rapid Prototyping Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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