npm i --save nativescript-open-youtube
- 版本:1.2.3
- GitHub: https://github.com/brunoziie/nativescript-open-youtube
- NPM: https://npmjs.net.cn/package/nativescript-open-youtube
- 下载量
- 昨日: 0
- 上周: 0
- 上月: 0
NativeScript Open Youtube
安装
在命令提示符下转到您的应用根目录并执行
tns plugin add nativescript-open-youtube
使用方法
JavaScript
// require the plugin
var Youtube = require("nativescript-open-youtube").Youtube;
// instantiate the plugin
var youtube = new Youtube();
youtube.open('VypbgNAsqos');
TypeScript
// require the plugin
import { Youtube } from "nativescript-open-youtube";
// instantiate the plugin
let youtube = new Youtube();
youtube.open('VypbgNAsqos');