12345678910111213141516171819202122232425 |
- <template>
- <slot></slot>
- </template>
- <script>
- export default {
- name: "JcHeader",
- props: {
- text: {
- type: String,
- }
- },
- setup(props) {
- console.log(props.text)
- return {
- text: props.text
- }
- }
- }
- </script>
- <style scoped>
- </style>
|