mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
29 lines
260 B
JavaScript
29 lines
260 B
JavaScript
module.exports = {
|
|
key: 'disk',
|
|
title: 'Local FS',
|
|
props: {
|
|
path: String
|
|
},
|
|
activated(opts) {
|
|
|
|
},
|
|
deactivated(opts) {
|
|
|
|
},
|
|
init(opts) {
|
|
|
|
},
|
|
created(opts) {
|
|
|
|
},
|
|
updated(opts) {
|
|
|
|
},
|
|
deleted(opts) {
|
|
|
|
},
|
|
renamed(opts) {
|
|
|
|
}
|
|
}
|