mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 02:53:08 +02:00
refactor(#10336): bind to local args
This commit is contained in:
parent
0960d61ce2
commit
f39b5be064
14 changed files with 26 additions and 15 deletions
|
@ -481,10 +481,21 @@ function toStories(component: string): string {
|
||||||
<spread-element
|
<spread-element
|
||||||
argument={
|
argument={
|
||||||
(
|
(
|
||||||
|
<member-expression
|
||||||
|
object={
|
||||||
|
(
|
||||||
|
<this-expression />
|
||||||
|
) as estree.ThisExpression
|
||||||
|
}
|
||||||
|
property={
|
||||||
|
(
|
||||||
<identifier name='args' />
|
<identifier name='args' />
|
||||||
) as estree.Identifier
|
) as estree.Identifier
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
) as estree.MemberExpression
|
||||||
|
}
|
||||||
|
/>
|
||||||
) as estree.SpreadElement,
|
) as estree.SpreadElement,
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -17,7 +17,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -18,7 +18,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -16,7 +16,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -18,7 +18,7 @@ const common = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -16,7 +16,7 @@ const common = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -17,7 +17,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const Empty = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -25,7 +25,7 @@ export const Empty = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -19,7 +19,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -18,7 +18,7 @@ export const Default = {
|
||||||
computed: {
|
computed: {
|
||||||
props() {
|
props() {
|
||||||
return {
|
return {
|
||||||
...args,
|
...this.args,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue