JcHeader.vue 270 B

12345678910111213141516171819202122232425
  1. <template>
  2. <slot></slot>
  3. </template>
  4. <script>
  5. export default {
  6. name: "JcHeader",
  7. props: {
  8. text: {
  9. type: String,
  10. }
  11. },
  12. setup(props) {
  13. console.log(props.text)
  14. return {
  15. text: props.text
  16. }
  17. }
  18. }
  19. </script>
  20. <style scoped>
  21. </style>