Nuxt/test/fixtures/basic/pages/navigate-to-external.vue
Alexander Lichter a4dfe232f0
feat(nuxt): navigateTo supports external redirects (#5022)
Co-authored-by: Pooya Parsa <pooya@pi0.io>
2022-08-24 18:04:56 +02:00

8 lines
160 B
Vue

<template>
<div>You should not see me</div>
</template>
<script setup>
await navigateTo('https://example.com/', { external: true, replace: true })
</script>