@nativescript/template-blank-vue 9.0.7 → 9.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,23 +1,19 @@
1
1
  <template>
2
- <Page>
3
- <ActionBar>
4
- <Label text="Home"/>
5
- </ActionBar>
2
+ <Frame>
3
+ <Page>
4
+ <ActionBar>
5
+ <Label text="Home"/>
6
+ </ActionBar>
6
7
 
7
- <GridLayout>
8
- <Label class="text-xl align-middle text-center text-gray-500" :text="message" />
9
- </GridLayout>
10
- </Page>
8
+ <GridLayout>
9
+ <Label class="text-xl align-middle text-center text-gray-500" :text="message" />
10
+ </GridLayout>
11
+ </Page>
12
+ </Frame>
11
13
  </template>
12
14
 
13
- <script lang="ts">
14
- import { defineComponent } from 'nativescript-vue'
15
+ <script setup lang="ts">
16
+ import { computed } from 'nativescript-vue'
15
17
 
16
- export default defineComponent({
17
- computed: {
18
- message() {
19
- return "Blank {N}-Vue app";
20
- }
21
- }
22
- });
18
+ const message = computed(() => "Blank {N}-Vue app");
23
19
  </script>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@nativescript/template-blank-vue",
3
3
  "main": "app/app.ts",
4
4
  "displayName": "Blank",
5
- "version": "9.0.7",
5
+ "version": "9.0.9",
6
6
  "description": "Blank template for NativeScript apps using Vue.",
7
7
  "author": "NativeScript Team <oss@nativescript.org>",
8
8
  "license": "Apache-2.0",