2.vue 289 B

12345678910111213141516171819
  1. <template>
  2. 1111
  3. </template>
  4. <script setup>
  5. //引入vue
  6. import {ref} from 'vue';
  7. //获得新闻数据
  8. const props = defineProps({
  9. titleLink:Object,//板块名称
  10. templateData:Array,//新闻数据
  11. skinId:String,//皮肤id
  12. });
  13. </script>
  14. <style lang="less" scoped>
  15. </style>