如何在React组件中使Materialize渲染?

时间:2019-06-01 13:22:11

标签: django reactjs materialize

我在使用Materialize CSS时正在构建一个简单的Django-React应用程序,并且我有一个联系表单,我希望用户选择日期,如何使datepicker显示在Contact组件中?

我意识到,当我导航到Contact组件时,日期选择器不起作用,而如果我只是将Contact组件导入到主App组件中,则datepicker可以完美地工作!请可能出什么事了?

当我将Contact组件粘贴到App.js组件中时,它会起作用

            <BrowserRouter>
              <Fragment>
                <Header />
                <Switch>
                  <Route exact path="/" component={Home} />
                  <Route path="/contact" component={Contact} />
                  <Route path="/about" component={About} />
                </Switch>
                <Contact />
                <Footer />
              </Fragment>
            </BrowserRouter>
```      </Provider>

But the date picker and indeed any plugin for that matter that requires initialization in Materialize css does not work

0 个答案:

没有答案