Я выполнил первый процесс установки vue-native, и я следую учебному пособию «Приступая к работе» Hello world (https://vue -native.io / getting-start.html ),но App.vue
никогда не выполняется, только App.js
.Если я удаляю App.js
, я получаю сообщение об ошибке:
"Невозможно решить" ../../App "из" 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',
},
});
App.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>
Спасибо