1 parent 74508b5 commit 3241f5fCopy full SHA for 3241f5f
1 file changed
src/views/home/SubTable.vue
@@ -33,7 +33,6 @@
33
<div class="col-8 col-md-10">
34
<label class="form-label" for="remote">远程配置</label>
35
<select class="form-select" id="remote" @change="selectRemoteConfig">
36
- <option value="">默认配置</option>
37
<option v-for="option in remoteConfigOptions" :key="option" :value="option.value">
38
{{ option.text }}
39
</option>
@@ -161,7 +160,7 @@ export default {
161
160
},
162
urls: [],
163
target: 'clash',
164
- remoteConfig: '',
+ remoteConfig: window.config.remoteConfigOptions?.[0]?.value || '',
165
};
166
167
created() {
0 commit comments