mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
38158cf261
Co-authored-by: Pooya Parsa <pooya@pi0.io>
23 lines
435 B
Vue
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>
|