mirror of
https://github.com/vxcontrol/soldr-modules.git
synced 2026-07-01 12:47:17 -04:00
16 lines
229 B
Vue
16 lines
229 B
Vue
<template>
|
|
<div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
const name = "empty";
|
|
|
|
module.exports = {
|
|
name,
|
|
props: ["protoAPI", "hash", "module", "eventsAPI", "modulesAPI", "components", "viewMode"],
|
|
data: () => ({
|
|
})
|
|
};
|
|
</script>
|