`. Read more about this feature in [Framework Support](https://vuejs.github.io/vetur/framework.html).
21 | - Hover over any tags such as `` or ``. You'll see the tag's description.
22 | - 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.
23 | - Delete the `foo` in `{{ foo }}`. Type `b`. You should see completion of `bar`.
24 | - In script section, try `_.`. You should see all [lodash](https://lodash.com)'s methods.
25 | - 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.
26 | - 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.
27 | - In `