Skip to content

Instantly share code, notes, and snippets.

@potato4d
Created March 17, 2018 03:34
Show Gist options
  • Save potato4d/866534014254ec1ff4ceb882e1718720 to your computer and use it in GitHub Desktop.
Save potato4d/866534014254ec1ff4ceb882e1718720 to your computer and use it in GitHub Desktop.
NuxtのSSRモードで一部だけSSRをスキップする方法 ref: https://qiita.com/potato4d/items/04d3767aaa036f557950
<body data-n-head="">
<div data-server-rendered="true" id="__nuxt"><div class="nuxt-progress" style="width:0%;height:2px;background-color:#3B8070;opacity:0;"></div><div id="__layout"><div><div><h1>Hello</h1><div class="no-ssr-placeholder"></div></div></div></div></div><script type="text/javascript">window.__NUXT__={"layout":"default","data":[{}],"error":null,"serverRendered":true};</script><script src="/_nuxt/manifest.js" defer></script><script src="/_nuxt/vendor.js" defer></script><script src="/_nuxt/app.js" defer></script>
</body>
<template>
<div>
<h1>Hello</h1>
<no-ssr placeholder="SSR">
<h2>Browser</h2>
</no-ssr>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment