做留言墙项目,根据设计稿,发现有四种按钮,这里不使用框架,自己写一个按钮组件
在components
下新建MyButton/MyButton.vue
<template>
<button :class="`my-btn btn-${type}`"><slot>slot>button>
template>
<script>
export default {
props: {
type: {
type: String,
default: "Button",
},
},
};