1.1.3 • Published 7 years ago

dbind-router v1.1.3

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

简介

  • Dbind前端路由组件

开始

  • 建议使用webpack等打包工具进行项目构建

  • npm i dbind

  • npm i dbind-router
    <body>
        <app></app>
    </body>
    var Dbind = require('dbind');
    var DbindRouter = require('dbind-router');

    var App = Dbind.createClass({
      data: {
        rootPath: '...', // Your project root path
        routeConfig: {
          path: '/',
          component: rootApp,
          children: [{
            path: '/user',
            component: userApp
          }, {
            path: '/index',
            component: indexApp,
          }]
        }
      },
      template: `
        <router root-path="{{ rootPath }}" route-config="{{ routeConfig }}" ></router>
      `,
      components: {
        router: DbindRouter
      }
    });

    Dbind.registerComponent('app', App);
    Dbind.watch(document.body);
1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago