2022-09-03 13:03:30 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<ClientOnlyScript />
|
|
|
|
<FunctionalComponent />
|
2023-06-20 18:28:44 +00:00
|
|
|
<ServerOnlyComponent />
|
2024-01-28 21:25:42 +00:00
|
|
|
<SharedComponent />
|
2022-09-03 13:03:30 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import '~/assets/assets.css'
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="postcss">
|
|
|
|
:root {
|
|
|
|
--postcss: 'postcss';
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style scoped>
|
2024-03-03 21:36:12 +00:00
|
|
|
/* Regression test for https: //github.com/nuxt/nuxt/issues/26057 */
|
|
|
|
/* definePageMeta( */
|
2022-09-03 13:03:30 +00:00
|
|
|
div {
|
|
|
|
--scoped: 'scoped';
|
|
|
|
}
|
|
|
|
</style>
|