network: remove unused variables

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2020-02-12 15:17:26 +05:30
parent ae50e11888
commit 0097f9eb42

View File

@ -85,9 +85,11 @@ export default {
}, },
data () { data () {
return { return {
totalIps: 0, fetchLoading: false,
ips: [],
page: 1, page: 1,
pageSize: 10, pageSize: 10,
totalIps: 0,
columns: [ columns: [
{ {
title: this.$t('ipaddress'), title: this.$t('ipaddress'),
@ -112,16 +114,7 @@ export default {
title: '', title: '',
scopedSlots: { customRender: 'action' } scopedSlots: { customRender: 'action' }
} }
], ]
fetchLoading: false,
ips: [],
regions: [],
clicked: '',
action: {
acquire: 'Please confirm that you want to acquire new IP',
release: 'Please confirm that you want to release this IP'
},
visible: false
} }
}, },
mounted () { mounted () {