Nuxt/docs/components/atoms/StabilityEdge.vue
Mitsuki Fukunaga 38158cf261
docs: add explicit createError import (#6050)
Co-authored-by: Pooya Parsa <pooya@pi0.io>
2022-07-22 09:55:54 +02:00

23 lines
435 B
Vue

<template>
<Alert icon="🧪">
{{ title }} is available on edge channel. Check out the
<Link to="/guide/going-further/edge-channel">
Edge Channel Documentation
</Link> to beta test.
<slot />
</Alert>
</template>
<script>
import { defineComponent } from '@nuxtjs/composition-api'
export default defineComponent({
props: {
title: {
type: String,
default: 'This feature'
}
}
})
</script>