valaxy-addon-components
valaxy-addon-components is a plugin that provides general-purpose Vue components for Valaxy.
- English | 简体中文
Installation
pnpm add valaxy-addon-componentsCommon Components
You can enable common components of the plugin as follows. For a full list of common components, see Common Components.
import { defineValaxyConfig } from 'valaxy'
import { addonComponents } from 'valaxy-addon-components'
export default defineValaxyConfig({
addons: [
addonComponents(),
],
})Theme Components
You can also extend unplugin-vue-components using the plugin’s ValaxyThemesResolver to introduce third-party themes. Here is an example using the Yun theme:
import { defineValaxyConfig } from 'valaxy'
import { ValaxyThemesResolver } from 'valaxy-addon-components'
export default defineValaxyConfig({
components: {
resolvers: [ValaxyThemesResolver({ themes: ['yun'] })],
},
})| Property | Type | Default | Description |
|---|---|---|---|
| themes | string[] | — | Third-party themes to import components from |
[!TIP] By default, the system will automatically recognize components under the
componentsfolder. To manually specify the component path relationships, theme support is required. Create acomponents.jsonfile in the root directory of the theme, and specify the component names and their paths relative to thecomponentsfolder, as shown below:
{
"YunCollectionItem": "collection/YunCollectionItem.vue"
}Usage
Most users may want to mount the components to the footer of the theme. You can create a new file in the components folder, such as MyFooter.vue, and use it as follows:
<template>
<YunFooter>
<VCLiveTime start-time="2022-01-01">
<template #live-time-before>
<span>This site has been running for</span>
</template>
<template #live-time-after>
<span>suffix</span>
</template>
</VCLiveTime>
</YunFooter>
</template>Common Components
Namespace starting with VC
VCLiveTime
Used to display the site’s uptime.
| Property | Type | Default | Description |
|---|---|---|---|
| startTime | string | — | The time from which the site starts counting |
Third-Party Components
Encapsulates third-party services and follows general naming rules.
Codepen
CodePen: Codepen