mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
24 lines
310 B
Vue
24 lines
310 B
Vue
<template>
|
|
<div>
|
|
<ClientOnlyScript />
|
|
<FunctionalComponent />
|
|
<ServerOnlyComponent />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import '~/assets/assets.css'
|
|
</script>
|
|
|
|
<style lang="postcss">
|
|
:root {
|
|
--postcss: 'postcss';
|
|
}
|
|
</style>
|
|
|
|
<style scoped>
|
|
div {
|
|
--scoped: 'scoped';
|
|
}
|
|
</style>
|