2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/dev/dev.js
Jeff Sagal 06177a4d24 feat: Vue 3 Support (#1344)
BREAKING CHANGE: drop vue 2 support
2021-10-19 18:53:22 -07:00

7 lines
117 B
JavaScript

import { createApp, h } from 'vue'
import Dev from './Dev.vue'
createApp({
render: () => h(Dev),
}).mount('#app')