我是应用程序开发的新手,我想从 vue native 开始,正如我在文档中看到的那样,vue native 无法访问某些设备 API,例如本地文件,但是 react native 可以,而 vue 只是 React Native 的包装器, 那么如何在 vue 项目中使用 import react native 组件和 API 呢?并使用expo进行开发
问问题
281 次
1 回答
0
例如离子:
在脚本部分:
import { Ionicons } from "@expo/vector-icons";
export default {
components: {Ionicons},
}
之后,您可以在模板中使用它:
<template>
<view class="container">
<ionicons name="md-checkmark-circle" size=92 color="green" />
</view>
</template>
您可以在此处查看示例: https ://vue-native.io/docs/community-libraries-doc.html
Expo-Speech 的另一个例子:
安装包:
expo install expo-speech
在脚本中添加它:
import * as Speech from 'expo-speech';
export default {
methods: {
sayHi: function(){
Speech.speak('Hi');
}
}
}
在模板中:
<template>
<view class="container">
<button title="Say Hi" :on-press="sayHi" />
</view>
</template>
祝你好运!
于 2019-09-12T12:33:55.557 回答