Cpage.js icon indicating copy to clipboard operation
Cpage.js copied to clipboard

可以支持路由操作吗

Open adfgcc opened this issue 3 years ago • 1 comments

是否有路由相关的api可以用呢

adfgcc avatar Sep 08 '22 02:09 adfgcc

Cpage.router([
  {
    path: '/article',
    component: Article,
    params: {
      id: 123
    },
    cache: true,
    delay: 200
  },
  {
    path: '/article/:id',
    component: ArticleDetail
  },
  {
    path: '/about',
    component: About,
    cache: true,
  },
]);

cpagejs avatar Sep 08 '22 02:09 cpagejs