-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: 没有找到页面实例。 #8902
Comments
@zuozhea 楼主问题解决了没,遇到类似问题。 |
vue2 按照官方文档写 app.js 也有这个问题,不能用 new Vue 包装 |
@Ttou 文档应该已经更新了: |
如果用react呢,入口组件该怎么改才能避免这种情况 |
@kaifa-yang 新建一条 issue 并提供一下 demo 看看咯 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
相关平台
微信小程序
小程序基础库: 2.16.0
使用框架: Nerv
复现步骤
==>app.js
import Nerv, { Component } from 'nervjs';
import { Provider } from '@tarojs/redux';
import configStore from './store';
import { AtTabBar } from 'taro-ui'
import './app.less';
const store = configStore();
class App extends Component {
componentDidMount() {
console.log(Provider, store)
}
componentDidShow() { }
componentDidHide() { }
componentDidCatchError() { }
render() {
return (
)
}
}
export default App
期望结果
希望刻印正常运行
实际结果
页面挂了
环境信息
The text was updated successfully, but these errors were encountered: