首頁 > 軟體

Vuepress使用vue元件實現頁面改造

2022-07-05 14:03:24

引言

只是單純的用 vuepress 寫個 markdown 檔案,的確會處處受限,滿足不了客製化化的樣式和功能,有時只是簡單的修改下某個頁面,或者做些元件演示的內容,而不是開發一整套主題。所以研究下如何在專案中使用 vue 元件還有非常有必要的,畢竟也沒那麼難。

前置環境

  • node 環境 node v16.13.0
  • VuePress 版本 VuePress v2.0.0-beta.48

每個版本的使用方式還是有些差異的,尤其是 1.x2.x,所以在閱讀的時候儘量與自己所用的版本對比下,避免不必要的試錯。

使用 vue 元件

安裝外掛

Vuepress2.x 中需要安裝 @vuepress/plugin-register-components 外掛並做好設定,而在Vuepress1.0中,md 檔案能自動識別匯出的.vue檔案。

yarn add @vuepress/plugin-register-components@next
// 或者
npm i -D @vuepress/plugin-register-components@next

設定外掛

config.js中設定修改如下:

官方設定項檔案

const { registerComponentsPlugin } = require('@vuepress/plugin-register-components')
module.exports = {
  plugins: [
    registerComponentsPlugin({
      // 設定項
    }),
  ],
}

我原生的組態檔的部分內容:

const path = require("path");
const { defaultTheme } = require('vuepress');
const { docsearchPlugin } = require('@vuepress/plugin-docsearch')
// ======================引入外掛====================================
const { registerComponentsPlugin } = require('@vuepress/plugin-register-components')
// ======================引入外掛 End================================
const navbar = require('./navbar');
const sidebar = require('./sidebar');
module.exports = {
  base: '/',
  lang: 'zh-CN',
  title: '前端技術棧',
  description: '前端白皮書',
  head: [
    ['link', { rel: 'manifest', href: '/manifest.webmanifest' }],
    ['meta', { name: 'theme-color', content: '#3eaf7c' }]
  ],
  alias: {
    '@pub': path.resolve(__dirname, './public'),
  },
  markdown: {
    importCode: {
      handleImportPath: (str) =>
          str.replace(/^@src/, path.resolve(__dirname, 'src')),
    },
    extractTitle: true
  },
  // ======================設定外掛====================================
  plugins: [
    registerComponentsPlugin({
      // 設定項
      componentsDir: path.resolve(__dirname, './components')
    })
  ],
  // ======================設定外掛 End=================================
  theme: defaultTheme({
    // URL
    logo: 'https://vuejs.org/images/logo.png',
    // 頂部導航
    navbar: navbar,
    // 側邊欄
    sidebar: sidebar,
    sidebarDepth: 2, // e'b將同時提取markdown中h2 和 h3 標題,顯示在側邊欄上。
    lastUpdated: true // 檔案更新時間:每個檔案git最後提交的時間
  })
}

建立 vue 元件

.vuepress資料夾中新建components資料夾,裡面存放vue元件,檔案結構如下:

├─.vuepress
│  └─ components
│  │  └─ Card.vue
│  └─ config
│  │  └─ navbar.js
│  │  └─ sidebar.js
│  └─ public
│  │  └─ images
│  └─ config.js

至此md檔案就能無需引入即可自動識別.vuepress/components/下所有的vue元件了。繼續完成下面的步驟,就可以看到專案中使用的效果。

Card.vue 檔案內容如下,這個元件個人可以因需而定,這裡只做個參照,和後面的效果對應上。key這裡沒有設定業務 ID 暫且使用 k來代替。

<template>
  <div class="g-card-link">
    <div v-for="(item,k) in value" class="g-card-item" :key="k">
      <a :href="item.link" rel="external nofollow"  target="_blank" :title="item.title">{{item.title}}</a>
    </div>
  </div>
</template>
<script setup>
import { ref, defineProps } from 'vue';
const props = defineProps({
  defaultValue:String
})
const value = ref(props.defaultValue);
</script>
<style lang="scss">
button {background-color: #4e6ef2}
.g-card-link {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
  text-align: center;
  line-height: 38px;
  .g-card-item {
    background: blue;
    width: 113px;
    max-width: 138px;
    height: 38px;
    cursor: pointer;
    overflow: hidden;
  }
  .g-card-item:nth-of-type(2n) {
    background: rgba(44,104,255,.1);
  }
  .g-card-item:nth-of-type(2n+1) {
    background: rgba(56, 203, 137, .1);
  }
}
</style>

使用 vue 元件

docs/docs/README.md 檔案直接引入Card.vue,當然檔案路徑你可以自由選擇。這裡我們給元件傳了資料,如果沒有資料互動會更簡單,直接參照就行了。

---
data: 2022-06-14
lang: zh-CN
title: Docs 常用檔案
description: 收集常用的檔案
---
# Docs
收集精編常用的檔案...
<div v-for="(item,k) in linkList">
    <h3>{{item.title}}</h3>
    <div>
        <card :defaultValue="item.children"/>
    </div>
</div>
<script setup>
import { ref } from 'vue';
const linkList = ref([]);
linkList.value = [
    {
        title: 'React UI 元件庫',
        children: [
            {
                title: 'Ant Design',
                link: 'https://ant.design/docs/react/introduce-cn'
            },{
                title: 'Bootstrap',
                link: 'https://react-bootstrap.github.io/getting-started/introduction'
            },{
                title: 'Material UI',
                link: 'https://mui.com/material-ui/getting-started/overview/'
            }
        ]
    },{
        title: 'Vue UI 元件庫',
        children: [
            {
                title: 'Element',
                link: 'https://element.eleme.io/#/zh-CN/component/installation'
            },{
                title: 'Element Plus',
                link: 'https://element-plus.org/zh-CN/component/button.html'
            },{
                title: 'Vant',
                link: 'https://youzan.github.io/vant/#/zh-CN'
            },{
                title: 'View Design',
                link: 'https://www.iviewui.com/view-ui-plus/guide/introduce'
            }
        ]
    },
    {
        title: '動畫庫',
        children: [
            {
                title: 'Animate.css',
                link: 'https://animate.style/'
            }
        ]
    }
]
</script>

至此元件已經引入到頁面中可,我們來看看效果 ☞ 傳送門

以上就是Vuepress使用vue元件實現頁面改造的詳細內容,更多關於Vuepress vue元件頁面改造的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com