content-card.vue 353 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div>
  3. <LeaveCommon />
  4. </div>
  5. </template>
  6. <script>
  7. import LeaveCommon from '@/components/common/footer'
  8. export default {
  9. name: 'ContentCard',
  10. components: {
  11. LeaveCommon
  12. },
  13. data() {
  14. return {}
  15. },
  16. methods: {
  17. // 手动触发绑定弹框
  18. handle() {
  19. }
  20. }
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. </style>