Skip to content

Commit 221e1df

Browse files
committed
chore: fix code blocks in readme
1 parent 74c9cd0 commit 221e1df

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ $ npm install --save nativescript-vue-navigator
1212
// main.js
1313
import Vue from 'nativescript-vue'
1414
...
15-
+import Navigator from 'nativescript-vue-navigator'
16-
+import {routes} from './routes'
17-
+Vue.use(Navigator, { routes })
15+
+ import Navigator from 'nativescript-vue-navigator'
16+
+ import {routes} from './routes'
17+
+ Vue.use(Navigator, { routes })
1818

1919
new Vue({
20-
- render: h => h('frame', App),
21-
+ render: h => h(App),
20+
- render: h => h('frame', App),
21+
+ render: h => h(App),
2222
}).$start()
2323
```
2424

0 commit comments

Comments
 (0)