UNPKG
qn-lcdp
Version:
latest (1.1.31)
1.1.31
1.1.30
1.1.28
1.1.27
1.1.25
1.1.24
1.1.23
1.1.20
1.1.17
1.1.13
1.1.10
1.1.8
1.1.7
1.1.1
1.0.6
1.0.5
青能科技低代码前端
gitee.com/qnui
qn-lcdp
/
ui
/
access
/
install.js
13 lines
(12 loc)
•
307 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export default function(Vue) { Vue.mixin({ beforeCreate() {
// 注入 Access 实例到 $access
if
(
this
.$parent &&
this
.$parent.$access) {
this
.$access =
this
.$parent.$access }
else
if
(
this
.$options.access) {
this
.$access =
this
.$options.access } } }) }