mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
CLI template: Prettier
This commit is contained in:
parent
45f7ec261b
commit
fba408cccb
@ -3,52 +3,52 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "./button.css";
|
||||
import './button.css';
|
||||
|
||||
export default {
|
||||
name: "my-button",
|
||||
name: 'my-button',
|
||||
|
||||
props: {
|
||||
label: {
|
||||
type: String,
|
||||
required: true
|
||||
required: true,
|
||||
},
|
||||
primary: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
default: false,
|
||||
},
|
||||
size: {
|
||||
type: String,
|
||||
default: "medium",
|
||||
validator: function(value) {
|
||||
return ["small", "medium", "marge"].indexOf(value) !== -1;
|
||||
}
|
||||
default: 'medium',
|
||||
validator: function (value) {
|
||||
return ['small', 'medium', 'marge'].indexOf(value) !== -1;
|
||||
},
|
||||
},
|
||||
backgroundColor: {
|
||||
type: String
|
||||
}
|
||||
type: String,
|
||||
},
|
||||
},
|
||||
|
||||
computed: {
|
||||
classes() {
|
||||
return {
|
||||
"storybook-button": true,
|
||||
"storybook-button--primary": this.primary,
|
||||
"storybook-button--secondary": !this.primary,
|
||||
[`storybook-button--${this.size}`]: true
|
||||
'storybook-button': true,
|
||||
'storybook-button--primary': this.primary,
|
||||
'storybook-button--secondary': !this.primary,
|
||||
[`storybook-button--${this.size}`]: true,
|
||||
};
|
||||
},
|
||||
style() {
|
||||
return {
|
||||
backgroundColor: this.backgroundColor
|
||||
backgroundColor: this.backgroundColor,
|
||||
};
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
onClick() {
|
||||
this.$emit("onClick");
|
||||
}
|
||||
}
|
||||
this.$emit('onClick');
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
@ -30,30 +30,30 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "./header.css";
|
||||
import MyButton from "./Button.vue";
|
||||
import './header.css';
|
||||
import MyButton from './Button.vue';
|
||||
|
||||
export default {
|
||||
name: "my-header",
|
||||
name: 'my-header',
|
||||
|
||||
components: { MyButton },
|
||||
|
||||
props: {
|
||||
user: {
|
||||
type: Object
|
||||
}
|
||||
type: Object,
|
||||
},
|
||||
},
|
||||
|
||||
methods: {
|
||||
onLogin() {
|
||||
this.$emit("onLogin");
|
||||
this.$emit('onLogin');
|
||||
},
|
||||
onLogout() {
|
||||
this.$emit("onLogout");
|
||||
this.$emit('onLogout');
|
||||
},
|
||||
onCreateAccount() {
|
||||
this.$emit("onCreateAccount");
|
||||
}
|
||||
}
|
||||
this.$emit('onCreateAccount');
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
Loading…
x
Reference in New Issue
Block a user