@acnb/plugins 中文文档教程

发布于 3年前 浏览 17 项目主页 更新于 3年前

plugins

acnb 的插件。

Usage

pnpm i @acnb/plugins
import { createTheme } from '@acnb/core'
import { background } from '@acnb/plugins'

createTheme().use(background)

中配置插件的默认行为

import { createTheme } from '@acnb/core'
import { background } from '@acnb/plugins'

createTheme().use(background, {
  // The default configuration of the Theme
  enable: true,
})

在您的主题配置后台插件

import { createTheme } from '@acnb/core'
import { background } from '@acnb/plugins'

createTheme().use(
  background,
  {},
  {
    // The configuration of the plugin
    opacitySelector: '#sideBar,#mainContent,#footer',
  }
)

plugins

Plugins for acnb.

Usage

pnpm i @acnb/plugins
import { createTheme } from '@acnb/core'
import { background } from '@acnb/plugins'

createTheme().use(background)

Configure the default behavior of the plugin in your Theme

import { createTheme } from '@acnb/core'
import { background } from '@acnb/plugins'

createTheme().use(background, {
  // The default configuration of the Theme
  enable: true,
})

Configure background plugin

import { createTheme } from '@acnb/core'
import { background } from '@acnb/plugins'

createTheme().use(
  background,
  {},
  {
    // The configuration of the plugin
    opacitySelector: '#sideBar,#mainContent,#footer',
  }
)
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文