header.vue 338 B

1234567891011121314151617181920
  1. <!--
  2. * @Description: 头部
  3. * @Author: kcz
  4. * @Date: 2019-12-30 00:37:05
  5. * @LastEditors: kcz
  6. * @LastEditTime: 2020-03-26 20:18:56
  7. -->
  8. <template>
  9. <header class="header" v-text="title"></header>
  10. </template>
  11. <script>
  12. export default {
  13. props: {
  14. title: {
  15. type: String,
  16. default: "表单设计器"
  17. }
  18. }
  19. };
  20. </script>