Skip to content

Instantly share code, notes, and snippets.

View thinkofher's full-sized avatar
🌈
lodz lodz lodz

thinkofher thinkofher

🌈
lodz lodz lodz
View GitHub Profile
@thinkofher
thinkofher / component-app.js
Created September 10, 2021 12:18 — forked from kesor/component-app.js
Vue.js 3.x with ES6 modules in the browser using import-map
import { defineAsyncComponent } from 'vue'
const Content = defineAsyncComponent(() => import('./component-content.js'))
export default {
name: 'App',
components: { Content },
template: /*html*/`
<Content />
`