12345678910111213141516171819202122232425262728293031 |
- <template lang="html">
- <Page>
- <ActionBar>
- <Label text="Browse"></Label>
- </ActionBar>
- <GridLayout class="page__content">
- <Label class="page__content-icon far" text.decode=""></Label>
- <Label class="page__content-placeholder" :text="message"></Label>
- </GridLayout>
- </Page>
- </template>
- <script>
- export default {
- data() {
- return {
- message: "<!-- Browse page content goes here -->"
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- // Start custom common variables
- @import "@nativescript/theme/scss/variables/blue";
- // End custom common variables
- // Custom styles
- </style>
|