Панель действий nativescrpipt-vue не отображается - PullRequest
0 голосов
/ 17 декабря 2018

Я пытаюсь создать свое первое мобильное приложение, используя nativescript-vue framework.Я застрял на компоненте ActionBar.Это не показывает.

<Page class="page">
  <ActionBar title="Test">
    <NavigationButton text="Go Back" android.systemIcon="ic_menu_back" @tap="goSite('main')" />      
  </ActionBar>
  <ScrollView v-if="site === 'main'" orientation="vertical">
     ///some code here
  </ScrollView>
  <ScrollView v-if="site === 'guest'" orientation="vertical">
     ///some code here
  </ScrollView>
</Page>

Я пробовал так много способов, и ActionBar не появился.Я использую `nativescript-theme-core / css / core.dark.css '

Я что-то забыл?У меня включена тема Holo?

...