增加admin管理帐号和项目的界面--初步实现
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
function useOption(props, { emit }) {
|
||||
return {
|
||||
hoverItem: () => {
|
||||
if (!props.disabled) {
|
||||
emit("hover", props.index);
|
||||
}
|
||||
},
|
||||
selectOptionClick: () => {
|
||||
if (!props.disabled) {
|
||||
emit("select", props.item, props.index);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
exports.useOption = useOption;
|
||||
//# sourceMappingURL=useOption.js.map
|
||||
Reference in New Issue
Block a user