123456789101112131415161718192021222324252627282930 |
- <template>
- <div>
- <LeaveCommon />
- </div>
- </template>
- <script>
- import LeaveCommon from '@/components/common/footer'
- export default {
- name: 'ContentCard',
- components: {
- LeaveCommon
- },
- data() {
- return {}
- },
- methods: {
- // 手动触发绑定弹框
- handle() {
- }
- }
- }
- </script>
- <style scoped lang="scss">
- </style>
|