Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. activeItem: null,
  6. };
  7. },
  8. methods: {
  9. selectItem(i) {
  10. this.activeItem = i;
  11. },
  12. },
  13. };
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement