tiny-vue/examples/sites/demos/mobile-first/app/exception/content-slot.vue

18 lines
282 B
Vue

<template>
<tiny-exception type="pagenoperm">
<template #content>
<div>content插槽</div>
</template>
</tiny-exception>
</template>
<script>
import { Exception } from '@opentiny/vue'
export default {
components: {
TinyException: Exception
}
}
</script>