unplugin / unplugin-vue2-script-setup

💡 Bring `<script setup>` to Vue 2.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

main.ts of CLI example spelling error

fosterdouglas opened this issue · comments

import Vue from 'vue'
import VueCompostionAPI, { createApp, h } from '@vue/composition-api'
import App from './App.vue'

Vue.config.productionTip = false
Vue.use(VueCompostionAPI)

const app = createApp({
  render: () => h(App),
})

app.mount('#app')


Just wanted to point out that "VueCompostionAPI" is spelled wrong here, in both the import and the .use() call !

Thank you