VScode 中的用户代码片段不适用于 Vetur 包
User snippets is not working with Vetur pacakge in VScode
大家好,我正在使用 VScode 并使用 [![Vetur][1]][1]
进行 Vuejs 语法突出显示和自动完成 support.I 我正在尝试让一些用户代码片段与 Vetur 一起使用,所以,我'我们尝试将它们添加到 vue.json 文件,但没有成功。
我也有一些 custom/user Vue 片段可以很好地处理 .HTML, .JS 文件,但是当涉及到 .vue 文件时它不起作用?
请问有人能帮帮我吗?
Vetur 对代码段设置进行了相当精细的调整。
<template>
<!-- Use `vue-html` snippets here -->
</template>
<!-- Use `vue` snippets here -->
<style>
</style>
或者在使用 TypeScript 时
<script lang="ts">
// Use TS snippets here
</script>
来源:https://vuejs.github.io/vetur/snippet.html
这意味着如果您想将片段添加到您的模板中,您需要将它们添加到 vue-html.json
。您的 Vue
片段很可能已经有效,但只能在 <template>
和 <script>
之间访问
大家好,我正在使用 VScode 并使用 [![Vetur][1]][1]
进行 Vuejs 语法突出显示和自动完成 support.I 我正在尝试让一些用户代码片段与 Vetur 一起使用,所以,我'我们尝试将它们添加到 vue.json 文件,但没有成功。
我也有一些 custom/user Vue 片段可以很好地处理 .HTML, .JS 文件,但是当涉及到 .vue 文件时它不起作用?
请问有人能帮帮我吗?
Vetur 对代码段设置进行了相当精细的调整。
<template>
<!-- Use `vue-html` snippets here -->
</template>
<!-- Use `vue` snippets here -->
<style>
</style>
或者在使用 TypeScript 时
<script lang="ts">
// Use TS snippets here
</script>
来源:https://vuejs.github.io/vetur/snippet.html
这意味着如果您想将片段添加到您的模板中,您需要将它们添加到 vue-html.json
。您的 Vue
片段很可能已经有效,但只能在 <template>
和 <script>