Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Latest commit

 

History

History
44 lines (39 loc) · 580 Bytes

README.md

File metadata and controls

44 lines (39 loc) · 580 Bytes

VuePress Theme for ClairDesign

On the way... Maybe never...

@playground
<button>click</button>
@playground
<button @click="incr">{{count}}</button>

<script>
  export default {
    data() {
      return { count: 1 }
    },
    methods: {
      incr() {
        this.count += 1
      }
    }
  }
</script>
@playground
<template>
  <HelloWorld></HelloWorld>
</template>
<script>
  export default {
    components: {
      HelloWorld: {
        render(h) {
          return h('h1', null, 'hello world')
        }
      }
    }
  }
</script>