Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
1,828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.28 KB | None | 0 0
  1. <template slot="label" slot-scope="{ item }">
  2.    <a @click="clickedNode(item)">
  3.       <v-checkbox
  4.         v-if="conditionalLogic"
  5.         :value="getValue(item.id)"
  6.         :label="item.name">
  7.       </v-checkbox>
  8.       <div v-else>{{ item.name }}</div>
  9.    </a>
  10. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement