Skip to content

Commit d7ee9c2

Browse files
committed
chore: update dependencies to 6.0
1 parent 806658b commit d7ee9c2

File tree

5 files changed

+20
-17
lines changed

5 files changed

+20
-17
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
"homepage": "https://github.com/rigor789/nativescript-vue#readme",
4545
"nativescript": {
4646
"platforms": {
47-
"android": "4.2.0",
48-
"ios": "4.2.0"
47+
"android": "6.0.0",
48+
"ios": "6.0.1"
4949
},
5050
"plugin": {
5151
"vue": "true",
@@ -95,7 +95,7 @@
9595
"rollup-plugin-resolve-aliases": "0.2.0",
9696
"semver": "6.0.0",
9797
"set-value": "3.0.0",
98-
"tns-core-modules": "5.4.1",
98+
"tns-core-modules": "6.0.1",
9999
"util-inspect": "0.1.8",
100100
"vue": "2.6.10"
101101
},

samples/app/app-with-tabs.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,14 @@ let app = new Vue({
3434
<GridLayout>
3535
<Tabs v-model="activeTab">
3636
<TabStrip>
37-
<TabStripItem v-for="(tab, i) in tabs" :key="i + tab.title" :title="tab.title"></TabStripItem>
37+
<TabStripItem v-for="(tab, i) in tabs"
38+
:key="i + tab.title"
39+
:title="tab.title" />
3840
</TabStrip>
3941
40-
<TabContentItem v-for="(tab, i) in tabs" :key="i + tab.title">
41-
<Label text="tab.text" />
42+
<TabContentItem v-for="(tab, i) in tabs"
43+
:key="i + tab.title">
44+
<Label :text="tab.text" />
4245
</TabContentItem>
4346
</Tabs>
4447
</GridLayout>

samples/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"main": "app-to-check-v-slot.js",
2+
"main": "app-with-tabs.js",
33
"name": "nativescript-vue-tests",
44
"version": "1.0.1"
55
}

samples/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"nativescript": {
66
"id": "org.nativescript.application",
77
"tns-android": {
8-
"version": "6.0.0-rc-2019-06-27-172817-03"
8+
"version": "6.0.0"
99
},
1010
"tns-ios": {
11-
"version": "6.0.0-rc-2019-06-28-105002-01"
11+
"version": "6.0.1"
1212
}
1313
},
1414
"scripts": {
@@ -25,7 +25,7 @@
2525
"nativescript-ui-gauge": "5.0.0-androidx",
2626
"nativescript-ui-sidedrawer": "7.0.0-androidx-110619",
2727
"nativescript-vue-devtools": "1.2.0",
28-
"tns-core-modules": "next",
28+
"tns-core-modules": "6.0.1",
2929
"vue-router": "3.0.6",
3030
"vuex": "3.1.1"
3131
},

0 commit comments

Comments
 (0)