ItemDetails.vue 611 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <Page>
  3. <ActionBar>
  4. <NavigationButton @tap="$navigateBack()" android.systemIcon="ic_menu_back"/>
  5. <Label :text="item.name"></Label>
  6. </ActionBar>
  7. <GridLayout>
  8. <Label class="m-10 h3" :text="item.description" verticalAlignment="top"></Label>
  9. </GridLayout>
  10. </Page>
  11. </template>
  12. <script>
  13. export default {
  14. props: ["item"],
  15. };
  16. </script>
  17. <style scoped lang="scss">
  18. // Start custom common variables
  19. @import "@nativescript/theme/scss/variables/blue";
  20. // End custom common variables
  21. // Custom styles
  22. </style>