playground

Former-commit-id: d4313aac163dc4f92c51252d306922dc7cd46496 [formerly d4313aac163dc4f92c51252d306922dc7cd46496 [formerly d4313aac163dc4f92c51252d306922dc7cd46496 [formerly d4313aac163dc4f92c51252d306922dc7cd46496 [formerly 8f13842546660b41f32ee8cea677b3209de4f0c2 [formerly a96a4b429c67a647f03669db6785ec1446251f44]]]]]
Former-commit-id: 76dfac0affc29a6a084b816e454228fc4e63f36f
Former-commit-id: 0a586a6f2c175433aea61919f3ab849424c18a53
Former-commit-id: 2cedc575e1ffec291718744aeec8eef97ad78844 [formerly fc782816dff65440d840e213445007ca24916b55]
Former-commit-id: a91ce07ac7ef5bd36e9da3797429af05ea237c29
Former-commit-id: 4a4de848a13dc6de7ba6a32989d25e9ca2e1300a
Former-commit-id: b3dcb91d14f99a5f9a420bc865953e87ad1711fc
Former-commit-id: 0e5de75b1702a2d7cde51e2ea8eef70516788614
Former-commit-id: d946abe5162521f707e7fcc5d64349843d3bb13a
This commit is contained in:
liyang
2018-11-17 11:54:57 +08:00
parent ad717ce269
commit d841dc1ca8
25 changed files with 46 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ import db from '@/libs/db.js'
export default {
data () {
return {
filename: __filename,
dbData: ''
}
},

View File

@@ -46,6 +46,7 @@ import { mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
dataDisplay: '',
keyNameToSet: '',
valueToSet: '',

View File

@@ -73,6 +73,7 @@ import { mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
form: {
name: '',
region: '',

View File

@@ -73,6 +73,7 @@ import { mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
form: {
name: '',
region: '',

View File

@@ -48,6 +48,7 @@ import { mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
dataDisplay: '',
keyNameToSet: '',
valueToSet: '',

View File

@@ -42,6 +42,7 @@ import { mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
dataDisplay: '',
keyNameToSet: '',
valueToSet: '',

View File

@@ -44,6 +44,7 @@ import { mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
dataDisplay: '',
keyNameToSet: '',
valueToSet: '',

View File

@@ -9,6 +9,7 @@
export default {
data () {
return {
filename: __filename,
env: JSON.stringify(process.env, null, 2)
}
}

View File

@@ -7,3 +7,11 @@
</d2-page-cover>
</d2-container>
</template>
<script>
export default {
data () {
filename: __filename
}
}
</script>

View File

@@ -42,6 +42,9 @@
<script>
export default {
data () {
filename: __filename
},
methods: {
handleColorful () {
this.$log.colorful([

View File

@@ -8,6 +8,9 @@
<script>
export default {
data () {
filename: __filename
},
methods: {
handleNewError () {
console.log(a) // eslint-disable-line

View File

@@ -15,6 +15,7 @@
export default {
data () {
return {
filename: __filename,
text: 'D2Admin log info'
}
},

View File

@@ -9,6 +9,9 @@
<script>
export default {
data () {
filename: __filename
},
mounted () {
console.log('this.$route', this.$route)
}

View File

@@ -18,6 +18,7 @@
export default {
data () {
return {
filename: __filename,
sendForm: {
username: 'FairyEver',
userid: '001'

View File

@@ -10,6 +10,7 @@
export default {
data () {
return {
filename: __filename,
value: ''
}
}

View File

@@ -11,6 +11,7 @@ export default {
name: 'demo-playground-page-cache-on',
data () {
return {
filename: __filename,
value: ''
}
}

View File

@@ -19,6 +19,9 @@ export default {
required: true
}
},
data () {
filename: __filename
},
computed: {
/**
* 带参路由多组参数使用同一个组件实例,需要在组件内部对多个参数的情况进行统一处理

View File

@@ -10,6 +10,9 @@
<script>
import { mapActions } from 'vuex'
export default {
data () {
filename: __filename
},
methods: {
...mapActions('d2admin/fullscreen', [
'toggle'

View File

@@ -43,6 +43,7 @@ import { mapState, mapMutations } from 'vuex'
export default {
data () {
return {
filename: __filename,
dialogVisible: false
}
},

View File

@@ -25,6 +25,7 @@ import { mapState, mapMutations } from 'vuex'
export default {
data () {
return {
filename: __filename,
menuEmpty: [
{
title: '空菜单演示',

View File

@@ -42,6 +42,7 @@ export default {
name: 'demo-playground-store-page',
data () {
return {
filename: __filename,
value: ''
}
},

View File

@@ -14,6 +14,7 @@ import { mapState, mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
currentValue: ''
}
},

View File

@@ -35,6 +35,7 @@ import { mapState, mapActions } from 'vuex'
export default {
data () {
return {
filename: __filename,
table: {
showHeader: false,
border: true

View File

@@ -17,6 +17,9 @@ export default {
'active'
])
},
data () {
filename: __filename
},
methods: {
...mapActions('d2admin/transition', [
'set'

View File

@@ -10,6 +10,9 @@
<script>
import { mapState } from 'vuex'
export default {
data () {
filename: __filename
},
computed: {
...mapState('d2admin/ua', {
uaData: 'data'