jamesjianpeng/vue-sunduan-UI

View on GitHub
src/components/SdButton/SdButton.vue

Summary

Maintainability
Test Coverage
<template lang="html">
  <button type="button" name="button" @click="add">button</button>
</template>

<script>
export default {
  name: 'button-test',
  data() {
    return {
      num: 0,
    };
  },
  methods: {
    add() {
      this.num++;
    },
  },
};
</script>

<style lang="scss">
</style>