Skip to content

Instantly share code, notes, and snippets.

@fadamakis
Created January 30, 2021 13:27
Show Gist options
  • Save fadamakis/bbdc21f1441fb69036a2ce0578af962b to your computer and use it in GitHub Desktop.
Save fadamakis/bbdc21f1441fb69036a2ce0578af962b to your computer and use it in GitHub Desktop.
Cheap Static Components with v-once
Vue.component('terms-of-service', {
template: `
<div v-once>
<h1>Terms of Service</h1>
... a lot of static content ...
</div>
`
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment