PHP Classes

File: frontend/js/app.js

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Micro-Blog   frontend/js/app.js   Download  
File: frontend/js/app.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Micro-Blog
Blog management system extensible with classes
Author: By
Last change:
Date: 2 days ago
Size: 2,008 bytes
 

Contents

Class file image Download
import { Home } from './paginas/home.js'; import { Portfolio } from './paginas/portfolio.js'; import { Evento } from './paginas/evento.js'; import { Postagem } from './subPagina/postagem.js'; import { PortfolioDetalhes } from './subPagina/portfolioDetalhes.js'; import { EventoDetalhes } from './subPagina/eventoDetalhes.js'; import { Footer } from './componentes/footer.js'; const routes = [ { path: '/', component: Home }, { path: '/postagem/:slug', component: Postagem }, { path: '/portfolio', component: Portfolio }, { path: '/portfolio/:slug', component: PortfolioDetalhes }, { path: '/eventos', component: Evento }, { path: '/evento/:id', component: EventoDetalhes } ]; const router = VueRouter.createRouter({ history: VueRouter.createWebHashHistory(), routes, scrollBehavior(to, from, savedPosition) { return { top: 0 }; } }); const App = { data() { return { startTime: null, endTime: null, renderTime: null }; }, beforeMount() { this.startTime = performance.now(); }, mounted() { this.endTime = performance.now(); this.renderTime = this.endTime - this.startTime; console.log(`Tempo de renderização: ${this.renderTime}ms`); }, components: { Footer }, template: ` <div> <h1>Meu Microblog</h1> <nav> <router-link to="/">Home</router-link> | <router-link to="/portfolio">Portfólio</router-link> | <router-link to="/eventos">Eventos</router-link> </nav> <router-view></router-view> <Footer /> </div> `, setup() { const urlBase = 'http://localhost:8080/'; return { urlBase }; }, provide() { return { urlBase: this.urlBase }; } }; const app = Vue.createApp(App); app.use(router); app.mount('#app');