<div id="app"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/@meve/ui/umd/meve.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@meve/touch-emulator/iife.js"></script>
<script>
Vue.use(Meve)
new Vue({
template: '<m-button>Meve</m-button>'
}).$mount('#app')
</script>
# Install with npm or yarn or pnpm
# npm
npm i @meve/ui @meve/touch-emulator -S
# yarn
yarn add @meve/ui @meve/touch-emulator
# pnpm
pnpm add @meve/ui @meve/touch-emulator
import Vue from 'vue'
import App from './App.vue'
import Meve from '@meve/ui'
import '@meve/ui/es/style.js'
import '@meve/touch-emulator'
Vue.use(Meve)
new Vue({
render: (h) => h(App)
}).$mount('#app')
当前处于开发阶段, 暂不推荐在生产环境中使用.
Vue Version | Dev Progress | Status |
---|---|---|
Vue2 | 60% | WIP |
Vue3 | 0% | PENDING |