Nuxt/examples/with-vux/pages/index.vue
renovate[bot] e934da3c36
chore(deps): update devdependency @nuxtjs/eslint-config to v5 (#8345)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Clark Du <clark.duxin@gmail.com>
2020-11-14 17:10:53 +00:00

23 lines
349 B
Vue

<template>
<div>
<group title="vux demo">
<cell title="cell" value="click me" is-link @click.native="alert" />
</group>
</div>
</template>
<script>
export default {
head () {
return {
title: 'vux demo'
}
},
methods: {
alert () {
this.$vux.alert.show('This is a Alert example.')
}
}
}
</script>