🎨 format files

This commit is contained in:
StarHeartHunt
2021-04-05 13:44:19 +08:00
parent 20e1bf9624
commit 1c6711355e
10 changed files with 174 additions and 174 deletions

View File

@ -28,30 +28,30 @@
</template>
<script>
import Adapter from "./Adapter.vue";
import Plugin from "./Plugin.vue";
import Bot from "./Bot.vue";
import Adapter from './Adapter.vue'
import Plugin from './Plugin.vue'
import Bot from './Bot.vue'
export default {
name: "Store",
name: 'Store',
components: {
Adapter,
Plugin,
Bot
Bot,
},
data() {
return {
tab: 1,
tabs: {
0: "协议",
1: "插件",
2: "机器人"
}
};
0: '协议',
1: '插件',
2: '机器人',
},
}
},
computed: {},
methods: {}
};
methods: {},
}
</script>
<style>