Last active
March 4, 2020 00:35
-
-
Save leegeunhyeok/0aca16beb33d5cbe3d34c4655c7da073 to your computer and use it in GitHub Desktop.
π Vue.js 3 composition API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Github - @vue/composition-api