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