File size: 2,361 Bytes
4d70170 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
<script>
import Other from './Other.vue'
import MyClass from './MyClass.js'
import Functional from './Functional.vue'
export default {
components: {
Other,
Functional,
},
props: {
msg: String,
obj: null,
ins: MyClass,
},
data() {
return {
localMsg: this.msg,
items: [1, 2],
regex: /(a\w+b)/g,
nan: Number.NaN,
infinity: Number.POSITIVE_INFINITY,
negativeInfinity: Number.NEGATIVE_INFINITY,
over: false,
}
},
computed: {
awww() {
return {
a: {
b: {
c: 123,
},
},
}
},
},
methods: {
add() {
const l = this.items.length
this.items.push(
l + 1,
l + 2,
l + 3,
)
},
rm() {
this.items.pop()
},
inspect() {
this.$inspect()
},
},
}
</script>
<template>
<div id="target">
<h1>{{ localMsg }} {{ msg }}</h1>
<span>Regex: {{ regex.toString() }}</span>
<input @keyup.enter="regex = new RegExp($event.target.value)">
<span>(Press enter to set)</span>
<br>
<button
class="add"
@mouseup="add"
>
Add 3
</button>
<button
class="remove"
@mousedown="rm"
>
Remove
</button>
<input v-model="localMsg">
<Other
v-for="item in items"
:id="item"
:key="item"
attr="some-attr"
/>
<div>
<button
class="inspect"
@click="inspect"
@mouseover="over = true"
@mouseout="over = false"
>
Inspect component
</button>
<span
v-if="over"
class="over"
>Mouse over</span>
</div>
<div>
<Functional
v-for="n in 5"
:key="n"
:name="`Row ${n}`"
/>
<Functional
name="Embed component"
>
<Other :key="0" />
</Functional>
<Functional
name="Embed functional component"
>
<Functional name="Child" />
</Functional>
</div>
</div>
</template>
<style lang="stylus">
body
background white
</style>
<style lang="stylus" scoped>
.inspect
border solid 1px black
background #eee
color black
border-radius 2px
padding 6px 12px
cursor pointer
&:hover
border-color blue
color blue
.over
pointer-events none
margin-left 12px
</style>
|