primevue-mirror/layouts/AppCodeHighlight.js

17 lines
476 B
JavaScript
Raw Normal View History

2020-09-22 09:32:14 +00:00
import Prism from 'prismjs';
2020-09-24 11:14:55 +00:00
const CodeHighlight = {
2020-09-22 09:32:14 +00:00
beforeMount(el, binding) {
2021-03-17 11:29:01 +00:00
const modifiers = binding.modifiers;
const value = binding.value;
2022-09-14 14:26:41 +00:00
if (modifiers.script || value === 'script') el.className = 'language-javascript';
else if (modifiers.css || value === 'css') el.className = 'language-css';
else el.className = 'language-markup';
2020-09-22 09:32:14 +00:00
Prism.highlightElement(el.children[0]);
}
};
2021-03-17 11:29:01 +00:00
export default CodeHighlight;