PHP Classes

File: resources/js/app.js

Recommend this page to a friend!
  Classes of Hillary Kollan   PHP Trello Clone using Laravel and Vue.js   resources/js/app.js   Download  
File: resources/js/app.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Trello Clone using Laravel and Vue.js
Web app and API to manage tasks like Trello
Author: By
Last change:
Date: 1 year ago
Size: 461 bytes
 

Contents

Class file image Download
// require('./bootstrap'); import Vue from 'vue' import VueRouter from 'vue-router' import Tasks from './views/Tasks' Vue.use(VueRouter) const router = new VueRouter({ mode: 'history', routes: [ { path: '/', name: 'tasks', component: Tasks } ] }); const app = new Vue({ el: '#app', components: { Tasks }, router, });