File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11import { App , Plugin } from 'vue' ;
2- import { CodeBlock } from './plugin' ;
2+ import { VCodeBlock } from './plugin' ;
33import '@/plugin/styles/cssVariables.css' ;
44import '@/plugin/styles/utilities.scss' ;
55import '@/plugin/styles/main.scss' ;
66import '@/plugin/styles/themeStyles.scss' ;
77
88
99const install = ( app : App ) => {
10- app . component ( 'CodeBlock' , CodeBlock ) ;
10+ app . component ( 'CodeBlock' , VCodeBlock ) ;
11+ app . component ( 'VCodeBlock' , VCodeBlock ) ;
1112} ;
1213
13- CodeBlock . install = install ;
14+ VCodeBlock . install = install ;
1415
15- export default CodeBlock as unknown as Plugin ;
16+ export default VCodeBlock as unknown as Plugin ;
1617
1718export {
18- CodeBlock
19+ VCodeBlock
1920} ;
Original file line number Diff line number Diff line change 1- export { default as CodeBlock } from './CodeBlock .vue' ;
1+ export { default as VCodeBlock } from './VCodeBlock .vue' ;
You can’t perform that action at this time.
0 commit comments