Last active
March 17, 2021 00:33
-
-
Save jasonbahl/8288edd4bdc5c669620f12a0c4b10561 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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