You are on page 1of 2

<template>

<div>

<h1>hola desde vue</h1>

</div>

</template>

<script>

export default {

created:function(){

this.hola();

},

data:function(){

return{

},

computed:{

},

methods:{

hola(){

alert("hola mundo")

},

}
</script>

You might also like