gpt4 book ai didi

vue.js - vue单文件组件导入scss intellisense

转载 作者:搜寻专家 更新时间:2023-10-30 22:47:04 27 4
gpt4 key购买 nike

我正在玩弄 VSCode 和 vue。我可以通过 import 语句在 vue sfc 中使用带有一些变量的外部 scss 文件。一切正常,除了 intellisense 不加载 .vue 文件中的变量。

这是我在 .vue 文件中的样式标签

<style lang="scss" scoped>
@import '~styles/main';
$other-color: #FFAAAA;
.greeting {
font-size: 20px;
color: $secondary-color;
border-bottom: 2px solid $primary-color;
margin-bottom: 15px;
}
</style>

$other-color 被 intellisense 找到,但不是 $primary-color 和 $secondary-color,它们在 '~styles/main' 中定义(并由 webpack 正确加载)。

我是不是遗漏了什么或者无法让它发挥作用?

最佳答案

经过一番尝试后,我得出了这个解决方案。我首先创建了一个单独的 .scss 文件,将所有组件样式移到那里,然后在我的 vue sfc 文件中添加了对组件 scss 的引用。

<!-- .vue -->
<template>
<div>
<div class="greeting">Hello {{name}}{{exclamationMarks}}</div>
<button @click="decrement">-</button>
<button @click="increment">+</button>
</div>
</template>

<script lang="ts">
import Vue from "vue";

export default Vue.extend({
props: ['name', 'initialEnthusiasm'],
data() {
return {
enthusiasm: this.initialEnthusiasm,
}
},
methods: {
increment() { this.enthusiasm++; },
decrement() {
if (this.enthusiasm > 1) {
this.enthusiasm--;
}
},
},
computed: {
exclamationMarks(): string {
return Array(this.enthusiasm + 1).join('!');
}
}
});
</script>

<style src="./Hello.scss" scoped></style>

通过这种方式,我可以毫无问题地使用导入的 scss 文件中的变量。

在这个例子中,greeting 类是在 Hello.scss 文件中定义的。为了在我的 vue 文件中自动完成 scss 类,我使用 this Visual Studio Code 扩展。

如果您有更好的解决方案,请分享。

关于vue.js - vue单文件组件导入scss intellisense,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52297941/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com