我正在尝试使用nativescript-vue框架创建我的第一个移动应用程序。 我被困在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主题?