Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d635dd1

Browse files
authored
fix: variable name error (#8)
1 parent 1affed1 commit d635dd1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-inheritance",
3-
"version": "1.0.1-beta.6",
3+
"version": "1.0.1-beta.7",
44
"description": "vue inheritance",
55
"main": "src/index.js",
66
"types": "src/index.d.ts",

‎src/index.js‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ class VueInheritanceComponent {
6363
* @description
6464
*/
6565
static extend (componentDefine, override) {
66-
const VueInheritanceComponent = isNotNil(componentDefine)
66+
const vueInheritanceComponent = isNotNil(componentDefine)
6767
? Object.assign(new VueInheritanceComponent(), clone(componentDefine))
6868
: new VueInheritanceComponent()
6969

7070
return isNotNil(override)
71-
? Object.assign(VueInheritanceComponent, clone(override))
72-
: VueInheritanceComponent
71+
? Object.assign(vueInheritanceComponent, clone(override))
72+
: vueInheritanceComponent
7373
}
7474

7575
/**

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /