22 lines
481 B
Vue
22 lines
481 B
Vue
<template lang="html">
|
|
<div class="layout row">
|
|
<v-btn @click="expand">
|
|
<v-icon>arrow-right</v-icon>
|
|
</v-btn>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
* TreeNode's are list item views of character properties. Every property which
|
|
* can belong to the character is shown in the tree view of the character
|
|
* the tree view shows off the full character structure, and where each part of
|
|
* character comes from.
|
|
**/
|
|
export default {
|
|
}
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|