有以下代碼要實現換膚功能css
<template> <div class="app-root" :class="themeClass"> <div class="app-container"> <p>{{ msg }}</p> <select v-model="theme"> <option value="red">Red</option> <option value="green">Green</option> <option value="blue">Blue</option> </select> </div> </div> </template> <script> export default { name: 'app', data() { return { msg: 'Dynamic Themes', theme: 'red' } }, computed: { themeClass() { return `theme-${this.theme}`; } } }
這裏經過一個下拉框應用不用主題app
首先咱們把主題變量抽取出來函數
$themes: ( red: ( font-color: red, ), green: ( font-color: green ), blue: ( font-color: blue ), );
這裏包含三個主題red,gredd,blue,每一個主題內的font-color變量對應不一樣的值,this
而後咱們寫一個主題化的mixin,包括一個themed函數spa
@mixin themify($themes: $themes) { @each $theme-name, $map in $themes { .theme-#{$theme-name} & { $theme-map: () !global; @each $key, $value in $map { $theme-map: map-merge($theme-map, ($key: $value)) !global; } @content; $theme-map: null !global; } } } @function themed($key) { @return map-get($theme-map, $key); }
這段代碼的功能主要是對須要主體化的地方,對樣式根據不一樣主題的變量進行替換,而後複製一份樣式代碼code
使用方式以下blog
<style lang="scss" scoped> @import './styles/theming'; .app-container { @include themify($themes) { color: themed('font-color'); } } </style>
至此,主題換膚功能完成ip