mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
24 lines
277 B
Vue
24 lines
277 B
Vue
<template>
|
|
<div>
|
|
<p>
|
|
hello
|
|
</p>
|
|
<NuxtLink
|
|
id="to-foo"
|
|
to="/wrapper-expose/page"
|
|
>
|
|
to foo
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
function hello () {
|
|
console.log('world')
|
|
}
|
|
|
|
defineExpose({
|
|
hello,
|
|
})
|
|
</script>
|