tiny-vue/examples/sites/demos/mobile-first/app/exception/button-text.vue

22 lines
382 B
Vue

<template>
<tiny-exception type="pagenoperm">
<tiny-button type="primary" @click="test">立即新建</tiny-button>
</tiny-exception>
</template>
<script>
import { TinyException, TinyModal, TinyButton } from '@opentiny/vue'
export default {
components: {
TinyException,
TinyButton
},
methods: {
test() {
TinyModal.alert('111')
}
}
}
</script>