From 159a614d41b80ad4da841ce4376e33fd89c881fe Mon Sep 17 00:00:00 2001 From: Equinox Date: Thu, 22 Jul 2021 11:41:54 +1200 Subject: [PATCH] readme.md: update links to docs --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7bb3c84..cb658bb 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ A Vue project with minimal setup and dependencies for trying out [Vetur](https:/ Try all features below in `src/Test.vue`. You can read more about these features in Vetur's documentation: https://vuejs.github.io/vetur/. - Do an emmet expansion on the html template. For example, type `div` and then tab. -- Complete on ``. Read more about this feature in [Framework Support](https://vuejs.github.io/vetur/framework.html). +- Complete on ``. Read more about this feature in the [Workspace Component](https://vuejs.github.io/vetur/guide/component-data.html#workspace-component-data) section. - Hover over any tags such as `
` or ``. You'll see the tag's description. - Because of `"vetur.experimental.templateInterpolationService": true` in `.vscode/settings.json`, you should see an error on `{{ fo }}` in the template section. Change it to `foo` to fix the error. - Delete the `foo` in `{{ foo }}`. Type `b`. You should see completion of `bar`. @@ -25,11 +25,11 @@ Try all features below in `src/Test.vue`. You can read more about these features - Install another library with types, such as [jquery](https://api.jquery.com/). `yarn add -S jquery && yarn add -D @types/jquery`. After importing it with `import * as $ from 'jquery'`, you should get `$.` completions. - Setup [eslint-plugin-vue](https://eslint.vuejs.org/user-guide/) with a `.eslintrc`. Set `"vetur.validation.template": false` to turn off Vetur's builtin ESLint linter. You'll get ESLint warnings now. - In `