Skip to content
This repository was archived by the owner on Mar 17, 2024. It is now read-only.

Commit 8badf72

Browse files
committed
build v0.6.3
chore: vue to 3.0.5
1 parent 40715e8 commit 8badf72

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xsoulspace/vue_flutter_tailwind",
33
"description": "Vue3 styled like Flutter with Tailwind CSS",
4-
"version": "0.6.2",
4+
"version": "0.6.3",
55
"private": false,
66
"author": {
77
"name": "Anton Malofeev",
@@ -33,7 +33,7 @@
3333
"@tailwindcss/postcss7-compat": "^2.0.3",
3434
"postcss": "^7",
3535
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
36-
"vue": "^3.0.0",
36+
"vue": "^3.0.5",
3737
"vue3-virtual-scroller": "^0.2.1",
3838
"vue-grid-layout": "3.0.0-beta1"
3939
},

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
continue.</strong
1616
>
1717
</noscript>
18-
<div id="app" style="position: relative"></div>
18+
<div id="app"></div>
1919
<!-- built files will be auto injected -->
2020
</body>
2121
</html>

src/components/Navigation.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
defineComponent,
55
h,
66
Teleport,
7+
watch,
78
} from '@vue/runtime-core'
89
import { Colors } from '../abstract/Colors'
910
import { EdgeInsetsStep } from '../abstract/EdgeInsets'
@@ -38,7 +39,13 @@ export const Navigation = ({ child }: NavigationI) => {
3839
)
3940

4041
const isRoutesExists = computed(() => routeController.count > 0)
42+
watch(isRoutesExists, () => {
43+
console.log({ isRoutesExists })
44+
})
4145
const isFullscreen = computed(() => routeController._isFullscreen)
46+
watch(isRoutesExists, () => {
47+
console.log({ isFullscreen })
48+
})
4249
const isNotFullscreen = computed(() => routeController._isNotFullscreen)
4350
return () =>
4451
h('div', {}, [
@@ -47,7 +54,7 @@ export const Navigation = ({ child }: NavigationI) => {
4754
Visibility({
4855
visible: isRoutesExists,
4956
child: h(
50-
<Teleport to="body">
57+
<Teleport to="#app">
5158
{h(
5259
Positioned({
5360
_zIndex: routeController._backgroundZIndex.value,

0 commit comments

Comments
 (0)