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>
API
Component | Description |
---|---|
v-no-ssr | Primary Component |
Ready for more?
Continue your learning with related content selected by the Team or move between pages by using the navigation links below.
Edit this page onGitHub