Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 285 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 285 Bytes

vue-webcomponents

丝滑体验webcomponents

<template>
  <div>
    <section>
      my name is
      <edit-span :value="name" @change="change"></edit-span>
    </section>
    <section>
      <button @click="name = 'bar'">change</button>
    </section>
  </div>
</template>