Skip to content

Connect dva with taro. It is written fully with Typescript.

License

Notifications You must be signed in to change notification settings

zcorky/dva-for-taro

Repository files navigation

dva-for-taro

NPM version NPM quality Coverage Status Dependencies Build Status Known Vulnerabilities NPM download license issues Open in Gitpod

Connect dva with taro. It is written fully with Typescript.

  • 🕒 Familiar dva API & patterns
  • 💪 Node and Browser Support
  • 🔥 TypeScript

Install

$ npm install @zcorky/dva-for-taro

Usage

import Taro, { Component } from '@tarojs/taro'
import { Provider } from '@tarojs/redux'
import { createStore } from '@zcorky/dva-for-taro';

const store = createStore({
  models: [
    require('./models/count').default,
  ],
})

class App extends Component {
  config = {
    pages: [
      'pages/Index/index',
    ],
    window: {
      navigationBarBackgroundColor: '#fff',
      navigationBarTitleText: 'WeChat',
      navigationBarTextStyle: 'black',
    },
  }

  render () {
    return (
      <Provider store={store}>
        <Index />
      </Provider>
    )
  }
}

API

Examples

  • [WIP]

Relatived

License

MIT © Moeover

About

Connect dva with taro. It is written fully with Typescript.

Resources

License

Stars

Watchers

Forks