如果你使用 Konsta UI 与其他框架(如 Framework7 或 Ionic)一起使用,我们仍然应该使用 KonstaProvider
来指定 Konsta UI 的全局属性(如主题)。
我们还需要在应用程序的根元素中添加 k-ios
或 k-material
类。
<template>
<!-- Wrap our app with KonstaProvider -->
<k-provider theme="ios">
<!-- We add extra `k-ios` class to the app root element -->
<f7-app theme="ios" class="k-ios">
<f7-view>
<f7-page>
<f7-navbar title="My App" />
<!-- Konsta UI components -->
<k-block>
<p>Here comes my app</p>
</k-block>
<k-block class="space-y-4">
<p>Here comes the button</p>
<k-button>Action</k-button>
</k-block>
</f7-page>
</f7-view>
</f7-app>
</k-provider>
</template>
<script>
/* App.vue */
// we use main App and Router components from Framework7
import { f7App, f7View, f7Page, f7Navbar } from 'framework7-vue';
// we use KonstaProvider instead
import { kProvider, kBlock, kButton } from 'konsta/vue';
export default {
components: {
f7App,
f7View,
f7Page,
f7Navbar,
kProvider,
kBlock,
kButton,
},
};
</script>
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
dark | boolean | false | 包含 |
theme | 'ios' | 'material' | 'parent' | 'material' | 应用程序主题。如果设置为 |
touchRipple | boolean | true | 在 Material 主题中启用触摸波纹效果。允许全局禁用所有组件的触摸波纹 |