這個問題是關於vue.js的,它在使用webpack配置的樣板上運行。vue.js - 將sass樣式從一個組件綁定到另一個組件
我需要動態地將組件father
的sass變量傳遞給組件son
(爲了簡化命名)。
組件father
我可以訪問樣式標記中的$color
變量。 和我使用這個HTML模板打電話來son
組件:
// father component
<template>
<son></son>
</template>
<style lang='sass' scoped>
@import 'assets/sass/color';
</style>
進口青菜變量,$color
需要來自father
和改變son
背景讓我們說兒子只是一個簡單的div。
// son component
<template>
<div></div>
</template>
<style lang=sass scoped>
div {
width: 200px;
height: 200px;
}
</style>
什麼是正確的做法呢?
真的不明白......其中數組內的值被宣佈爲上海社會科學院值? – LiranC
你可以導入樣式標籤,然後你可以通過'$ style.classname' var訪問你的類,檢查** edit **並使用類綁定 – MehulJoshi