Allowing "Known remotes" to be import and exported

This commit is contained in:
NI
2019-12-30 18:44:01 +08:00
parent edc6aeab92
commit e75ebed269
6 changed files with 221 additions and 37 deletions

View File

@@ -46,6 +46,8 @@
v-if="tab === 'known' && !inputting"
:knowns="knowns"
:launcher-builder="knownsLauncherBuilder"
:knowns-export="knownsExport"
:knowns-import="knownsImport"
@select="selectKnown"
@remove="removeKnown"
@clear-session="clearSessionKnown"
@@ -106,6 +108,14 @@ export default {
type: Function,
default: () => []
},
knownsExport: {
type: Function,
default: () => []
},
knownsImport: {
type: Function,
default: () => []
},
connectors: {
type: Array,
default: () => []