mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
29 lines
544 B
Vue
29 lines
544 B
Vue
<template>
|
|
<Alert type="info" icon="🔎">
|
|
Read and edit a live example in <NuxtLink :to="link" v-text="computedTitle" />
|
|
</Alert>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent } from '@nuxtjs/composition-api'
|
|
import createTitle from '~/utils/createTitle'
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
link: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
title: {
|
|
type: String,
|
|
required: false
|
|
}
|
|
},
|
|
computed: {
|
|
computedTitle () {
|
|
return createTitle(this.title, this.link)
|
|
}
|
|
}
|
|
})
|
|
</script>
|