mirror of
https://github.com/speatzle/nfsense.git
synced 2025-09-13 15:19:08 +00:00
Convert eslintrc in package.json to flat config
- I hate this. I hate that they forced this. - But hey, at least it works again.
This commit is contained in:
parent
fc18e9e8ac
commit
2c050ae61d
32 changed files with 111 additions and 113 deletions
|
@ -85,10 +85,10 @@ onMounted(async() => {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<TableView title="Services" :columns="columns" :loading="loading" v-model:selection="selection" v-model:data="displayData" :table-props="{sort:true, sortSelf: true}">
|
||||
<TableView v-model:selection="selection" v-model:data="displayData" title="Services" :columns="columns" :loading="loading" :table-props="{sort:true, sortSelf: true}">
|
||||
<button @click="load">Refresh</button>
|
||||
<router-link class="button" to="/object/services/edit">Create</router-link>
|
||||
<button @click="editService" :disabled="selection.length != 1">Edit</button>
|
||||
<button @click="deleteService" :disabled="selection.length != 1">Delete</button>
|
||||
<button :disabled="selection.length != 1" @click="editService">Edit</button>
|
||||
<button :disabled="selection.length != 1" @click="deleteService">Delete</button>
|
||||
</TableView>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue