You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import Vue from 'vue'
import VueStorage from 'vue-ls'
import config from '../config/defaultSettings'
// base library
import Antd from 'ant-design-vue'
import Viser from 'viser-vue'
import VueCropper from 'vue-cropper'
import 'ant-design-vue/dist/antd.less'
// ext library
import VueClipboard from 'vue-clipboard2'
import PermissionHelper from '../utils/helper/permission'
// import '../components/use'
import './directives/action'
// 设置VueClipboard自动设置容器
VueClipboard . config . autoSetContainer = true
// 使用Antd组件库
Vue . use ( Antd )
// 使用Viser组件库
Vue . use ( Viser )
// 使用VueStorage插件, 并传入配置参数
Vue . use ( VueStorage , config . storageOptions )
// 使用VueClipboard插件
Vue . use ( VueClipboard )
// 使用PermissionHelper插件
Vue . use ( PermissionHelper )
// 使用VueCropper插件
Vue . use ( VueCropper )