123456789101112131415161718192021 |
- export default {
- props: {
- title: {
- type: String,
- default: "",
- },
- // control取值范围为 "back" "back|home" "home" ""
- control: {
- type: String,
- default: "",
- },
- bgcolor: {
- type: String,
- default: "",
- },
- color: {
- type: String,
- default: "#fff",
- }
- }
- }
|