CLI template: Prettier

This commit is contained in:
Michael Shilman 2020-07-15 15:56:18 +08:00
parent 45f7ec261b
commit fba408cccb
2 changed files with 29 additions and 29 deletions

View File

@ -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>

View File

@ -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>