完成 安装 过程后,我们可以在 Vue 应用程序中开始使用 Konsta UI 组件。
这个过程非常简单,我们需要从 konsta/vue
中导入 Konsta UI Vue 组件。
<template>
...
<k-block>
<p>This is block with text</p>
</k-block>
<k-block class="space-y-4">
<p>Here comes the button</p>
<k-button>Action</k-button>
</k-block>
...
</template>
<script>
/* App.vue */
import { kBlock, kButton } from 'konsta/vue';
export {
components: {
kBlock,
kButton,
},
}
</script>
我们假设您将 Konsta UI 组件与其他框架(如 Framework7 或 Ionic)一起使用。
但是,如果您只使用 Konsta UI,则需要用 Konsta UI 的 应用程序组件 来包装所有组件。
在 应用程序组件 中,我们可以定义全局主题(iOS 或 Material)和其他有用的全局变量。
<template>
<k-app theme="ios">
<k-page>
<k-navbar title="My App" />
<k-block>
<p>Here comes my app</p>
</k-block>
</k-page>
</k-app>
</template>
<script>
import { kApp, kPage, kNavbar, kBlock } from 'konsta/vue';
export default {
components: {
kApp,
kPage,
kNavbar,
kBlock,
},
};
</script>
如果您确实将 Konsta UI 与其他框架一起使用,我们仍然可以(也应该)指定 Konsta UI 的全局变量(如主题)。在这种情况下,我们需要使用 KonstaProvider。
我们还需要在应用程序的根元素中添加 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 { konstaProvider, kBlock, kButton } from 'konsta/vue';
export default {
components: {
f7App,
f7View,
f7Page,
f7Navbar,
konstaProvider,
kBlock,
kButton,
},
};
</script>