File tree 1 file changed +5
-5
lines changed
generator/templates/nvw/src
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 58
58
},
59
59
methods: {
60
60
goToHomePage() {
61
- VUE_APP_MODE == 'web' ? this.$router.push('/') : this.$navigateTo(Home);
61
+ VUE_APP_MODE === 'web' ? this.$router.push('/') : this.$navigateTo(Home);
62
62
},
63
63
goToAboutPage() {
64
- VUE_APP_MODE == 'web' ? this.$router.push('about') : this.$navigateTo(About);
64
+ VUE_APP_MODE === 'web' ? this.$router.push('about') : this.$navigateTo(About);
65
65
},
66
66
},
67
67
};
100
100
private navbarTitle: string = `App.vue`;
101
101
102
102
private goToHomePage () {
103
- VUE_APP_MODE == 'web' ? this.$router.push('/') : this.$navigateTo(Home);
103
+ VUE_APP_MODE === 'web' ? this.$router.push('/') : this.$navigateTo(Home);
104
104
};
105
105
106
106
private goToAboutPage () {
107
- VUE_APP_MODE == 'web' ? this.$router.push('about') : this.$navigateTo(About);
107
+ VUE_APP_MODE === 'web' ? this.$router.push('about') : this.$navigateTo(About);
108
108
};
109
109
}
110
110
203
203
<style native>
204
204
@import '~styles/style-one';
205
205
</style>
206
- <%_ } _%>
206
+ <%_ } _%>
You can’t perform that action at this time.
0 commit comments