跳至主要內容
vuepress-theme-hope

vuepress-plugin-sass-palette

VuePress2 的 Sass 调色板插件

快速上手配置

使用插件

安装

pnpm
pnpm add -D vuepress-plugin-sass-palette

使用

你必须在插件初始化期间调用 useSassPalettePlugin 函数来使用此插件。。

TS
import { useSassPalettePlugin } from "vuepress-plugin-sass-palette";
import type { PluginFunction } from "vuepress/core";

export const yourPlugin =
  (options): PluginFunction =>
  (app) => {
    useSassPalettePlugin(app, {
      // 插件选项
    });

    return {
      // 你的插件 API
    };
  };