props.js 425 B

123456789101112131415161718192021
  1. export default {
  2. props: {
  3. title: {
  4. type: String,
  5. default: "",
  6. },
  7. // control取值范围为 "back" "back|home" "home" ""
  8. control: {
  9. type: String,
  10. default: "",
  11. },
  12. bgcolor: {
  13. type: String,
  14. default: "",
  15. },
  16. color: {
  17. type: String,
  18. default: "#fff",
  19. }
  20. }
  21. }