mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-10 13:20:28 +08:00
✨ 支持 removePlugin API
This commit is contained in:
parent
04e674d1cd
commit
4cf00f9270
@ -4,7 +4,7 @@
|
||||
<div class="list-item">
|
||||
<a-list :grid="{ gutter: 16, column: 2 }" :data-source="list">
|
||||
<template #renderItem="{ item, index }">
|
||||
<a-list-item @click="showDetail(item)">
|
||||
<a-list-item v-if="item" @click="showDetail(item)">
|
||||
<template #actions>
|
||||
<a-button style="color: #ff4ea4;" type="text" :loading="item.isloading">
|
||||
<CloudDownloadOutlined
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "rubick",
|
||||
"version": "2.0.1-beta.14",
|
||||
"version": "2.0.1-beta.15",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
|
@ -137,4 +137,8 @@ window.rubick = {
|
||||
},
|
||||
|
||||
getLocalId: () => ipcSendSync("getLocalId"),
|
||||
|
||||
removePlugin() {
|
||||
ipcSend("removePlugin");
|
||||
},
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user