@nativescript-community/vue
为 NativeScript 定制的 Vue 3 版本
npm i --save @nativescript-community/vue

NativeScript Vue (社区版)

Vue 3 与 DOMiNATIVENativeScript 上的特性和技巧

实验平台


为什么选择它?

这是 NativeScript 的 Vue3 实现的一个替代版本。它可能不如官方的 NativeScript-Vue 功能丰富,但如果您想跟上 Vue 的上游开发,这仍然是一个不错的选择。

请注意,我们仅用一小时就使这个 Vue 实现工作,而不是几年。

安装

通过 npm

npm install @nativescript-community/vue @nativescript/core dominative undom-ng vue

注意: @nativescript/coredominativeundom-ngvue 是依赖项,您必须手动安装。使用依赖项的好处是,您可以直接从上游升级这些依赖项,无需等待 @nativescript-community/vue 的更新。


使用方法

import { Application } from '@nativescript/core'
import { createApp } from '@nativescript-community/vue'
import App from 'App.vue'

const app = createApp(App)

// Start the app
app.$run()

许可证

MIT