Vue中使用highlight.js實現代碼高亮顯示以及點擊復制
本文主要介紹瞭Vue中使用highlight.js實現代碼高亮顯示以及點擊復制,具體如下:
效果如下
第一步 安裝highlight.js
yarn add highlight.js
第二步 在main.js中引入
import hl from 'highlight.js' // 導入代碼高亮文件 import 'highlight.js/styles/a11y-dark.css' // 導入代碼高亮樣式 // 自定義一個代碼高亮指令 Vue.directive('highlight', function (el) { const blocks = el.querySelectorAll('pre code') blocks.forEach((block) => { hl.highlightBlock(block) }) })
第三步 創建組件
<template> <div class="copy-code-container"> <div class="copy-container flex-row"> <a-tooltip> <template slot="title"> 復制代碼 </template> <div class="ant-btn" @click="handleCopy(code, $event)"> <a-icon type="copy"></a-icon></div> </a-tooltip> <a-tooltip> <template slot="title"> 顯示代碼 </template> <a-icon @click="handeShowCode" type="code" /> </a-tooltip> </div> <div class="code-palce-container" :class="{ 'show-code': showCode }"> <div class="code-box" v-highlight> <pre> <code class="javascirpt">{[code]}</code> </pre> </div> </div> </div> </template> <script> import clip from '@/utils/clipboard' // use clipboard directly export default { data () { return { showCode: false } }, props: { code: { type: String, default: '' } }, methods: { handeShowCode () { this.showCode = !this.showCode }, handleCopy (text, event) { clip(text, event) } } } </script> <style lang="less" scoped> .copy-code-container { width: 100%; .copy-container { width: 100%; height: 50px; justify-content: center; align-items: center; position: relative; .ant-btn{ width: 58px; height: 38px; margin: 0; border: none; box-shadow: none; background-color: transparent; padding: 0; } i { cursor: pointer; font-size: 18px; padding: 10px 20px; } } .code-palce-container { width: 100%; height: 0; overflow: hidden; transition: all linear 0.1s; &.show-code { height: 100%; } .code-box { ::v-deep .hljs { padding: 0 20px; line-height: 25px; } } } } </style>
效果如圖:點擊顯示代碼
第四步: 使用組件
<copy-code :code="code"> </copy-code> export default { data () { return { code: `<template> <div> <a-button type="primary"> Primary </a-button> <a-button>Default</a-button> <a-button type="dashed"> Dashed </a-button> <a-button type="danger"> Danger </a-button> <a-config-provider :auto-insert-space-in-button="false"> <a-button type="primary"> 按鈕 </a-button> </a-config-provider> <a-button type="primary"> 按鈕 </a-button> <a-button type="link"> Link </a-button> </div> </template>` } } }
第五步 實現點擊復制代碼clipboard.js。
clipboard.js copy地址
import Vue from 'vue' import Clipboard from 'clipboard' function clipboardSuccess () { Vue.prototype.$message.success({ content: '復制成功', duration: 1.5 }) } function clipboardError () { Vue.prototype.$message.error({ content: '復制失敗', duration: 1.5 }) } export default function handleClipboard (text, event) { const clipboard = new Clipboard(event.target, { text: () => text }) clipboard.on('success', () => { clipboardSuccess() clipboard.destroy() }) clipboard.on('error', () => { clipboardError() clipboard.destroy() }) clipboard.onClick(event) }
到此這篇關於Vue中使用highlight.js實現代碼高亮顯示以及點擊復制的文章就介紹到這瞭,更多相關Vue highlight.js代碼高亮顯示內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- 代碼塊高亮可復制顯示js插件highlight.js+clipboard.js整合
- 在react中使用highlight.js將頁面上的代碼高亮的方法
- highlight.js 代碼高亮插件的使用詳解
- Vue3 編寫自定義指令插件的示例代碼
- Ant Design 組件庫按鈕實現示例詳解