init component
This commit is contained in:
14
node_modules/buetify/lib/composables/noticeController/provideNoticeController.js
generated
vendored
Executable file
14
node_modules/buetify/lib/composables/noticeController/provideNoticeController.js
generated
vendored
Executable file
@@ -0,0 +1,14 @@
|
||||
import { constant, constVoid } from 'fp-ts/lib/function';
|
||||
import { provide } from 'vue';
|
||||
export const NOTICE_CONTROLLER_SYMBOL = Symbol('notice-controller');
|
||||
export const DEFAULT_NOTICE_CONTROLLER_INJECTION = {
|
||||
showNotice: constant(constVoid)
|
||||
};
|
||||
export function provideNoticeController(showNotice) {
|
||||
const injection = {
|
||||
showNotice
|
||||
};
|
||||
provide(NOTICE_CONTROLLER_SYMBOL, injection);
|
||||
return injection;
|
||||
}
|
||||
//# sourceMappingURL=provideNoticeController.js.map
|
||||
Reference in New Issue
Block a user