mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
e934da3c36
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Clark Du <clark.duxin@gmail.com>
23 lines
349 B
Vue
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>
|