Skip to content

Instantly share code, notes, and snippets.

@nosajhpled
Created June 12, 2019 12:56
Show Gist options
  • Save nosajhpled/9d386497c9faef3f9085f64eecf18918 to your computer and use it in GitHub Desktop.
Save nosajhpled/9d386497c9faef3f9085f64eecf18918 to your computer and use it in GitHub Desktop.
Basic Vue Structure
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script type="text/javascript">
var formValidation = new Vue({
el:'',
data:{
},
methods:{
methodName: function (){
}
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment