123456789101112131415161718192021 |
- <template>
- <view class="py-30 px-40">
- <mx-bottom-buttons v-bind="bottomBinding"/>
- </view>
- </template>
- <script setup>
- import {computed} from 'vue';
- import {useInjectPaperNavigatorRef} from "@/components/mx-paper/components/usePaperNavigatorRefInjection";
- import {useInjectPaperNavigationService} from "@/components/mx-paper/usePaperNavigationServiceInjection";
- const {navigator} = useInjectPaperNavigatorRef()
- const {uncompletedCheckForSubmit} = useInjectPaperNavigationService()
- const bottomBinding = computed(() => uncompletedCheckForSubmit(navigator.value))
- </script>
- <style scoped>
- </style>
|