chore(omiv): 更新 pmiv-examples 内容
This commit is contained in:
parent
857501ad7e
commit
f656c4de23
|
@ -9,6 +9,7 @@ const cs = new (class {
|
|||
data = {
|
||||
count: 1
|
||||
}
|
||||
logPlugin = true
|
||||
sub = () => {
|
||||
this.data.count--
|
||||
}
|
||||
|
@ -25,6 +26,7 @@ const ns = new (class {
|
|||
data = {
|
||||
name: 'omiv'
|
||||
}
|
||||
logPlugin = true
|
||||
rename = () => {
|
||||
this.data.name = 'omiv + vue'
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@ export default {
|
|||
data = {
|
||||
count: 1
|
||||
}
|
||||
logPlugin = true
|
||||
sub = () => {
|
||||
this.data.count--
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<template>
|
||||
<div class="hello">
|
||||
<h1>{{ msg }}</h1>
|
||||
<button @click="store.sub">-</button>
|
||||
<span>{{state.count}}</span>
|
||||
<button @click="store.add">+</button>
|
||||
<button @click="$store.sub">-</button>
|
||||
<span>{{$state.count}}</span>
|
||||
<button @click="$store.add">+</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -5,8 +5,4 @@ import Omiv, { render } from '../../../src/omiv'
|
|||
Vue.use(Omiv)
|
||||
Vue.config.productionTip = false
|
||||
|
||||
// new Vue({
|
||||
// render: h => h(App)
|
||||
// }).$mount('#app')
|
||||
|
||||
render(App, '#app')
|
||||
|
|
|
@ -12,6 +12,9 @@ render(
|
|||
data = {
|
||||
count: 1
|
||||
}
|
||||
|
||||
logPlugin = true
|
||||
|
||||
sub = () => {
|
||||
this.data.count--
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue