Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created January 7, 2018 12:01
Show Gist options
  • Save danielschmitz/271692f4adb34d859df1bedb401c3b2c to your computer and use it in GitHub Desktop.
Save danielschmitz/271692f4adb34d859df1bedb401c3b2c to your computer and use it in GitHub Desktop.
<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