mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
23 lines
437 B
Vue
23 lines
437 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>
|