2
是否可以使用具有組件樣式標籤的變量?基本上我已經將mixin導入到我的style標籤中,該標籤接受2種顏色以在類中創建漸變。它工作得很好,但我想要這種動態,所以我可以通過數據庫設置它。我知道我可以通過內聯綁定一個樣式,但div的漸變相當長,並且作爲mixin運行得更好。在組件的樣式部分中使用Vue變量
組件:
<template>
<section class="section" v-bind:class=" { 'color-section' : content.gradient_color_one }">
<div class="container">
<div class="columns">
<div class="column is-half">
<h2 class="is-size-4" v-html="content.title"></h2>
<div class="section-content" v-html="content.description"></div>
<a class="button" :href=" '/'+ content.button_link">{{ content.button_text }}</a>
</div>
<div class="column">
<img :src="content.image" :alt="content.title" />
</div>
</div>
</div>
</section>
</template>
<script>
export default {
props:[
'content'
],
}
</script>
<style lang="scss" scoped>
@import "../../sass/helpers/mixins";
.color-section{
color:red;
@include diagonalGradient(content.gradient_color_one , content.gradient_color_two);
}
</style>
混入
@mixin diagonalGradient($top, $bottom){
background: $top;
background: -moz-linear-gradient(-45deg, $top 0%, $bottom 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, $top), color-stop(100%, $bottom));
background: -webkit-linear-gradient(-45deg, $top 0%, $bottom 100%);
background: -o-linear-gradient(-45deg, $top 0%, $bottom 100%);
background: -ms-linear-gradient(-45deg, $top 0%, $bottom 100%);
background: linear-gradient(135deg, $top 0%, $bottom 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#92fe9d', endColorstr='#00c8ff', GradientType=1);
}
我不認爲有一種方法可以輕鬆地做到這一點。如果線性漸變是一個複合屬性,它可能會更容易。這可能會讓你更輕鬆一些:https://vuejs.org/v2/guide/class-and-style.html#Multiple-Values –