mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
fix: disable hilight to reduce bundle size
This commit is contained in:
parent
bb890a99b2
commit
e1393a27aa
@ -1,6 +1,6 @@
|
||||
import { createApp, reactive, nextTick } from 'vue'
|
||||
import { createRouter, createWebHashHistory } from 'vue-router'
|
||||
import hljs from 'highlight.js'
|
||||
// import hljs from 'highlight.js'
|
||||
import routes from './route.config'
|
||||
import demoBlock from './components/demo-block'
|
||||
import MainFooter from './components/footer'
|
||||
@ -8,7 +8,7 @@ import MainHeader from './components/header'
|
||||
import SideNav from './components/side-nav'
|
||||
import FooterNav from './components/footer-nav'
|
||||
import title from './i18n/title'
|
||||
import 'highlight.js/styles/color-brewer.css'
|
||||
// import 'highlight.js/styles/color-brewer.css'
|
||||
import './demo-styles/index.scss'
|
||||
import './assets/styles/common.css'
|
||||
import './assets/styles/fonts/style.css'
|
||||
@ -16,7 +16,7 @@ import icon from './icon.json'
|
||||
|
||||
import App from './app.vue'
|
||||
import install from 'element-plus'
|
||||
import '../src/style/element-ui@2.13.2.css'
|
||||
// import '../src/style/element-ui@2.13.2.css'
|
||||
|
||||
const app = createApp(App)
|
||||
|
||||
@ -51,8 +51,8 @@ router.isReady().then(()=>{
|
||||
router.afterEach(async route => {
|
||||
// https://github.com/highlightjs/highlight.js/issues/909#issuecomment-131686186
|
||||
await nextTick()
|
||||
const blocks = document.querySelectorAll('pre code:not(.hljs)')
|
||||
Array.prototype.forEach.call(blocks, hljs.highlightBlock)
|
||||
// const blocks = document.querySelectorAll('pre code:not(.hljs)')
|
||||
// Array.prototype.forEach.call(blocks, hljs.highlightBlock)
|
||||
const data = title[route.meta.lang]
|
||||
for (let val in data) {
|
||||
if (new RegExp('^' + val, 'g').test(route.name)) {
|
||||
|
@ -9,6 +9,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<link rel="stylesheet" href="https://unpkg.com/browse/element-ui@2.13.2/lib/theme-chalk/index.css">
|
||||
</body>
|
||||
<% if (process.env.NODE_ENV === 'production') { %><script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
|
Loading…
Reference in New Issue
Block a user