要创建Vue本机应用程序,您需要App.js吗?

时间:2019-07-10 22:01:10

标签: expo vue-native

这里已经解决了两次,但是更多的是如何解决它的问题。我知道如何...您可以删除App.js。但是我的问题是,一旦打包将App.js分发或在其他任何时间,是否将需要App.js。如果是这样,我宁愿找到其他解决方案,而不仅仅是删除文件。

我将在App.js中提供代码。这是通过vue-native init或expo init创建的基本文件。

看过以前的帖子: Vue native is always executing App.js instead of .vue App.vue is not working in Vue-Native application

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';

export default function App() {
  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',
  },
});

1 个答案:

答案 0 :(得分:0)

如果您使用的是webpack,则可以通过设置入口点来解决此问题:

.bluetext{
    color: #3064b8; 
}

没有Webpack,我不确定是否有办法绕过App.js作为入口点。