File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
## CHANGELOG
2
2
3
+ ### v6.0.2 (2022-07-27)
4
+
5
+ - fix: Use the correct global component name [ #161 ] ( https://github.com/surmon-china/vue-codemirror/discussions/161 )
6
+
3
7
### v6.0.1 (2022-07-22)
4
8
5
9
- feat: add ` autoDestroy ` prop for [ #156 ] ( https://github.com/surmon-china/vue-codemirror/pull/156 ) .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-codemirror" ,
3
3
"description" : " CodeMirror code editor component for Vue" ,
4
- "version" : " 6.0.1 " ,
4
+ "version" : " 6.0.2 " ,
5
5
"homepage" : " https://github.com/surmon-china/vue-codemirror#readme" ,
6
6
"license" : " MIT" ,
7
7
"keywords" : [
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export { DEFAULT_CONFIG } from './config'
10
10
export const Codemirror = Component
11
11
export const install : Plugin = ( app , defaultConfig ?: Props ) => {
12
12
app . component ( Component . name , Component )
13
+ app . component ( 'Codemirror' , Component )
13
14
injectGlobalConfig ( app , defaultConfig )
14
15
}
15
16
You can’t perform that action at this time.
0 commit comments