0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

riot router

0
Posted at

riot router

npm

npm i --save riot-router

main.js

var route = require('riot-route')

//デフォルトのbaseは”#”です
//route.base('#')

route(function (collection, id, action) {
    console.log('collection: ' + collection)
    console.log('id: ' + id)
    console.log('action: ' + action)
})

// `#hello`のみに一致
route('hello', function (name) {
    console.log('hello')
    riot.mount('content', 'sample')

})

route.stop() // 古いコールバックを解除
route.start() // 再起動

参考:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?