Skip to content

Instantly share code, notes, and snippets.

@jasonbahl
Last active March 17, 2021 00:33
Show Gist options
  • Save jasonbahl/8288edd4bdc5c669620f12a0c4b10561 to your computer and use it in GitHub Desktop.
Save jasonbahl/8288edd4bdc5c669620f12a0c4b10561 to your computer and use it in GitHub Desktop.
<template>
<div>
<h1 v-html="$page.post.title" />
<div v-html="$page.post.content" />
</div>
</template>
<page-query>
query ($id: ID!) {
post(id: $id) {
title
content
}
}
</page-query>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment