1.0.0 • Published 2 years ago

self-adaptation-comp v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

大屏自适配组件

Status: Alpha.

Install

$ npm install self-adaptation-comp -S

Usage

import Vue from 'vue'
import App from './App.vue'

import MyPlugin from 'self-adaptation-comp'
// 全局注册了两个组件
// AutoFitContainer、RectPanel
Vue.use(MyPlugin)

new Vue({
  render: (h) => h(App)
}).$mount('#app')