export default {
  data() {
    return {
      loading: false
    }
  },
  methods:{
    clicked() {
      this.loading = true;
      // Kcko - this is the DONE() in parent ...
      this.$emit('click', () => {
        this.loading = false;
      })
    }
  }
};