Skip to content

Instantly share code, notes, and snippets.

@bschulz87
bschulz87 / _id.vue
Last active November 17, 2021 18:45
Nuxt.js Static GraphQL Queries powered by Axios
<template>
<div v-if="Car">
<h3>{{ Car.make }} {{ Car.model }}</h3>
<img :src="Car.photoURL" :alt="`${Car.model} photo`">
<p><nuxt-link to="/">Home page</nuxt-link></p>
</div>
</template>
<script>
import staticData from '~/plugins/axios-ecstatic'
@PurpleBooth
PurpleBooth / README-Template.md
Last active April 22, 2024 11:45
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites