Skip to main content
Module

x/aleph/examples/vue-app/main.ts

The Full-stack Framework in Deno.
Very Popular
Go to Latest
File
import { App, createSSRApp } from "aleph/vue";import Header from "./components/Header.vue";
const app = createSSRApp(App);
app.component("Header", Header);
app.mount("#root", true);