0

我使用 Vue Native,我正在尝试更改主题。但是 StyleProvider 没有采用主题,并抛出警告“道具类型失败:提供给 StyleProvider 的类型数组的道具样式无效,预期对象。” 我做错了什么?

<template>
<nb-style-provider v-bind:style="getTheme(material)">
<nb-container>
<nb-text>Contact</nb-text>
</nb-container>
</nb-style-provider>
</template>
<script>
import Vue from "vue-native-core";
import {VueNativeBase} from "native-base";
import getTheme from './native-base-theme/components';
import material from './native-base-theme/variables/material';

Vue.use(VueNativeBase);
export default {
data: function() {
return {
getTheme: getTheme,
material: material,
};
},
};
</script>
4

1 回答 1

0

现在,您必须声明一个单独的 React 组件以使用本机基本主题,然后导入该组件并在您的 vue 组件中重用它。

于 2018-08-24T08:17:25.357 回答