From dba9341603e104429dc27efc5748de0255099878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=BB=D1=8C=D1=8F?= Date: Fri, 21 Dec 2018 18:21:45 +0200 Subject: [PATCH] docs: Same quotes style (#470) [ci skip] --- docs/guide/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 075f347..af99b0b 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -39,11 +39,11 @@ yarn add vue-apollo graphql apollo-boost In your app, create an `ApolloClient` instance: ```js -import ApolloClient from "apollo-boost" +import ApolloClient from 'apollo-boost' const apolloClient = new ApolloClient({ // You should use an absolute URL here - uri: "https://api.graphcms.com/simple/v1/awesomeTalksClone" + uri: 'https://api.graphcms.com/simple/v1/awesomeTalksClone' }) ``` @@ -88,7 +88,7 @@ const apolloClient = new ApolloClient({ ```js import Vue from 'vue' -import VueApollo from "vue-apollo" +import VueApollo from 'vue-apollo' Vue.use(VueApollo) ```