我进行了 vue-native 安装的第一个过程,我正在遵循“入门”Hello world 教程(https://vue-native.io/getting-started.html),但App.vue
从未执行过,只有App.js
. _ 如果我删除App.js
我得到一个错误:
“无法从“node_modules\expo\AppEntry.js”解析“../../App””
如何解决此问题以使其正常工作并按照教程解决任何问题?
文件夹结构:
应用程序.js
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
应用程序.vue
<template>
<view class="container">
<text class="text-color-primary">My Vue Native App</text>
</view>
</template>
<style>
.container {
background-color: white;
align-items: center;
justify-content: center;
flex: 1;
}
.text-color-primary {
color: blue;
}
</style>
谢谢