diff --git a/CHANGELOG.md b/CHANGELOG.md index 4316961..9b88ea4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to the "vue3-vscode-snippets" extension will be documented in this file. +## `v0.3.1` + +### Fixed + +* No comma in `Nuxt SEO` snippets by @ExEr7um in + ## `v0.3.0` ### Features diff --git a/package.json b/package.json index c4e86f9..45301c8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Vue 3 VS Code Snippets", "description": "Vue 3 snippets for VS Code", "icon": "images/vue-logo.png", - "version": "0.3.0", + "version": "0.3.1", "publisher": "exer7um", "repository": { "type": "git", diff --git a/snippets/nuxt/nuxt-script.code-snippets b/snippets/nuxt/nuxt-script.code-snippets index 1c2b669..e2c6d18 100644 --- a/snippets/nuxt/nuxt-script.code-snippets +++ b/snippets/nuxt/nuxt-script.code-snippets @@ -31,7 +31,7 @@ "prefix": "nseo", "body": [ "useSeoMeta({", - "\ttitle: ${1:pageTitle}", + "\ttitle: ${1:pageTitle},", "\tdescription: ${2:pageDescription}", "})" ], @@ -50,7 +50,7 @@ "prefix": "nseo-server", "body": [ "useServerSeoMeta({", - "\ttitle: ${1:pageTitle}", + "\ttitle: ${1:pageTitle},", "\tdescription: ${2:pageDescription}", "})" ],