Search.vue 698 B

12345678910111213141516171819202122232425262728293031
  1. <template lang="html">
  2. <Page>
  3. <ActionBar>
  4. <Label text="Search"></Label>
  5. </ActionBar>
  6. <GridLayout class="page__content">
  7. <Label class="page__content-icon fas" text.decode="&#xf002;"></Label>
  8. <Label class="page__content-placeholder" :text="message"></Label>
  9. </GridLayout>
  10. </Page>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. message: "<!-- Search page content goes here -->"
  17. };
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. // Start custom common variables
  23. @import "@nativescript/theme/scss/variables/blue";
  24. // End custom common variables
  25. // Custom styles
  26. </style>