Created
April 10, 2023 19:11
-
-
Save ItsOnlyBinary/f156edd2bda024c6094f5acd5824112c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template id="example-template"> | |
<div @click="doClick">example plugin</div> | |
</template> | |
<script> | |
const componentObject = { | |
template: '#example-template', | |
props: [ | |
'network', | |
'buffer', | |
'user', | |
'sidebarState', | |
], | |
methods: { | |
doClick() { | |
console.log('I was clicked'); | |
}, | |
}, | |
}; | |
kiwi.addUi('userbox_info', componentObject); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment