Skip to content

Instantly share code, notes, and snippets.

@SastraNababan
Created March 14, 2022 07:36
Show Gist options
  • Save SastraNababan/2dfeb5dab50895ec15a4a8fc7758d756 to your computer and use it in GitHub Desktop.
Save SastraNababan/2dfeb5dab50895ec15a4a8fc7758d756 to your computer and use it in GitHub Desktop.
main
import Vue from 'vue'
import App from './App.vue'
import Pixel, { ThemeProvider, MpReset } from '@mekari/pixel'
Vue.use(Pixel)
new Vue({
render: (h) => h(ThemeProvider, [h(MpReset), h(App)])
}).$mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment