From a53b8a1b2d897252ef9d3c71480ee4216022de6b Mon Sep 17 00:00:00 2001 From: Prazdevs Date: Tue, 3 Sep 2024 03:28:30 +0200 Subject: [PATCH] docs: highlight quickstart lines --- docs/guide/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/index.md b/docs/guide/index.md index 8590221..93bbeb1 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -42,7 +42,7 @@ pinia.use(piniaPluginPersistedstate) When declaring your store, set the new `persist` option to `true`. ::: code-group -```ts [setup syntax] +```ts{11} [setup syntax] import { defineStore } from 'pinia' import { ref } from 'vue' @@ -57,7 +57,7 @@ export const useStore = defineStore( }, ) ``` -```ts [option syntax] +```ts{9} [option syntax] import { defineStore } from 'pinia' export const useStore = defineStore('main', {