Установка / Использование
Меньше 1 минуты
Установка
Создайте новый проект vuepress-theme-hope в папке [dir]
pnpm
pnpm create vuepress-theme-hope [dir]
yarn
yarn create vuepress-theme-hope [dir]
npm
npm init vuepress-theme-hope [dir]
Чтобы добавить vuepress-theme-hope в качестве конструктора документов в существующий проект, выполните следующую команду в корневом каталоге проекта:
pnpm
pnpm create vuepress-theme-hope add [dir]
yarn
yarn create vuepress-theme-hope add [dir]
npm
npm init vuepress-theme-hope add [dir]
Заметка
[dir]
здесь является параметром, замените его реальными именами папок, такими как docs
, blog
или другим именем, которое вам нравится.
Использование
Пожалуйста, импортируйте и используйте hopeTheme
, чтобы использовать vuepress-theme-hope
.
TS
// .vuepress/config.ts
import { defineUserConfig } from "vuepress";
import { hopeTheme } from "vuepress-theme-hope";
export default defineUserConfig({
theme: hopeTheme({
// your theme config here
}),
});
JS
// .vuepress/config.js
import { hopeTheme } from "vuepress-theme-hope";
export default {
theme: hopeTheme({
// your theme config here
}),
};
Вы можете просмотреть Конфигурацию этого сайта в качестве примера.