LoginSignup
0
0

More than 3 years have passed since last update.

Vue Routerについて

Posted at

Vue Routerとはシングルページアプリケーションを構築するためのVue.jsの拡張ライブラリ
コンポーネントとURLを紐付けてコンテンツを生成する

router.jsでやる事

import Vue from 'vue'
import VueRouter from 'vue-router'

import コンポーネント名 from 'コンポーネントファイル先指定'

Vue.use(VueRouter) //プラグインとして登録する

//VueRouetrインスタンスを生成する
const router = new VueRouter({
  routes: [
   {path: '/',
    name: 'home',
    component: コンポーネント名 }
   ]
})
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