12345678910111213141516171819 |
- <template>
- 44444
- </template>
- <script setup>
- //引入vue
- import {ref} from 'vue';
- //获得新闻数据
- const props = defineProps({
- titleLink:Object,//板块名称
- templateData:Array,//新闻数据
- skinId:String,//皮肤id
- });
- </script>
- <style lang="less" scoped>
- </style>
|