123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <script setup>
- import StaticCard from './components/static-card'
- import { useStaticCustomInfo } from '@/utils/hooks'
- const props = defineProps({
- source: {
- type: String,
- default: '',
- // required: true,
- },
- sourceDesc: {
- type: String,
- default: '',
- },
- popupTitle: {
- type: String,
- default: '联系客服,立享1V1管家式服务'
- },
- type: {
- type: String,
- default: '2'
- }
- })
- const {
- configInfo,
- } = useStaticCustomInfo({ props })
- console.log(configInfo)
- </script>
- <script>
- export default {
- name: 'PCContentStatic',
- }
- </script>
- <template>
- <div class="pc-content-static">
- <StaticCard />
- </div>
- </template>
- <style scoped lang="scss">
- </style>
|