Created
January 7, 2018 12:01
-
-
Save danielschmitz/271692f4adb34d859df1bedb401c3b2c to your computer and use it in GitHub Desktop.
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
<template> | |
<div> | |
<h1>{{ msg }}</h1> | |
<i-button @click="show">Clica aqui!</i-button> | |
<Modal v-model="visible" title="Bem vindo">Bem vindo ao iView em pt-BR</Modal> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'HelloWorld', | |
data () { | |
return { | |
msg: 'Welcome to Your Vue.js App', | |
visible: false | |
} | |
}, | |
methods: { | |
show: function () { | |
this.visible = true; | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment