npm i --save @nativescript-community/vue
- 版本:0.0.7
- GitHub: https://github.com/nativescript-community/vue
- NPM: https://npmjs.net.cn/package/%40nativescript-community%2Fvue
- 下载量
- 昨天: 0
- 上周: 0
- 上个月: 0
NativeScript Vue (社区版)
Vue 3 与 DOMiNATIVE 在 NativeScript 上的特性和技巧
为什么选择它?
这是 NativeScript 的 Vue3 实现的一个替代版本。它可能不如官方的 NativeScript-Vue 功能丰富,但如果您想跟上 Vue 的上游开发,这仍然是一个不错的选择。
请注意,我们仅用一小时就使这个 Vue 实现工作,而不是几年。
安装
通过 npm
npm install @nativescript-community/vue @nativescript/core dominative undom-ng vue
注意: @nativescript/core
、dominative
、undom-ng
、vue
是依赖项,您必须手动安装。使用依赖项的好处是,您可以直接从上游升级这些依赖项,无需等待 @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