mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
de62520990
Co-authored-by: Pooya Parsa <pooya@pi0.io>
23 lines
282 B
Vue
23 lines
282 B
Vue
<template>
|
|
<div>
|
|
<ClientOnlyScript />
|
|
<FunctionalComponent />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import '~/assets/assets.css'
|
|
</script>
|
|
|
|
<style lang="postcss">
|
|
:root {
|
|
--postcss: 'postcss';
|
|
}
|
|
</style>
|
|
|
|
<style scoped>
|
|
div {
|
|
--scoped: 'scoped';
|
|
}
|
|
</style>
|