1.0.1 • Published 10 months ago

vue-router-zyr v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

vue-click-outside-zyr

Vue 路由插件

Installation

$ npm install vue-click-outside

Example

Vue.use(VueRouter);

const router = new VueRouter({
  mode: "hash",
  routes: [
    {
      path: "/",
      name: "Home",
      component: Home,
    },
    {
      path: "/home",
      name: "Home",
      component: Home,
    },
    {
      path: "/about",
      name: "About",
      component: About,
    },
  ],
});

new Vue({
  el: "#app",
  router,
});
<template>
  <div>
    <router-link to="/home"> 首页 </router-link> |
    <router-link to="/about"> 关于 </router-link> <br>
    <router-view></router-view>
  </div>
</template>
1.0.1

10 months ago

1.0.0

10 months ago