PHP Classes

File: front/js/App.js

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Eventos   front/js/App.js   Download  
File: front/js/App.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Eventos
Manage events that happen at given dates
Author: By
Last change:
Date: 2 days ago
Size: 261 bytes
 

Contents

Class file image Download
import Navbar from './components/Navbar.js'; import router from './router.js'; const app = Vue.createApp({ components: { Navbar }, template: ` <Navbar /> <router-view ></router-view> `, }); app.use(router); app.mount('#app');