This is BETA documentation for Vuetify 3, examples and information may be broken or outdated.
Components not listed in the sidebar are not available yet.
Vuetify 2 documentation can be found on vuetifyjs.com
Components not listed in the sidebar are not available yet.
Vuetify 2 documentation can be found on vuetifyjs.com
# No SSR
The v-no-ssr
component is a simple wrapper that allows a developer to designate what a server-side renderer should not render, but leave to the client.
# Usage
The v-no-ssr
component prevents its content from rendering on the server side.
<template>
<v-no-ssr>
<!-- Everything inside will only render on the Client -->
<v-sheet>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Alias vitae minus, incidunt laboriosam amet doloribus officiis?
</v-sheet>
</v-no-ssr>
</template>
Ready for more?
Continue your learning with related content selected by the Team or move between pages by using the navigation links below.