cell.vue 549 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view @click="pressCell()" class="" style="display: flex;flex-direction: row;align-items: center;justify-content: center; background-color: #A0CFFF;width: 100%;height: 100%;">
  3. {{itemData.title}}
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. itemData: {
  10. type: Object,
  11. default: function(e) {
  12. return {}
  13. }
  14. }
  15. },
  16. methods: {
  17. pressCell(){
  18. uni.showModal({
  19. title:"点击",
  20. })
  21. }
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. </style>