Skip to content

Instantly share code, notes, and snippets.

@leegeunhyeok
Last active March 4, 2020 00:35
Show Gist options
  • Save leegeunhyeok/0aca16beb33d5cbe3d34c4655c7da073 to your computer and use it in GitHub Desktop.
Save leegeunhyeok/0aca16beb33d5cbe3d34c4655c7da073 to your computer and use it in GitHub Desktop.
πŸ–– Vue.js 3 composition API
import Vue from 'vue'
import VueCompositionApi from '@vue/composition-api'
import App from './App.vue'
Vue.use(VueCompositionApi)
new Vue({
render: h => h(App)
}).$mount('#app')
@leegeunhyeok
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment