123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <main>
- <input v-model="importAccountSchemaName"/>
- <button @click="importAccountSchema()">Import account schema</button>
- <router-link v-for="schema in schemas" :to="`/schemas/${schema._id}`" class="schema-item">{{ schema.name }} v{{ schema.version }}</router-link>
- </main>
- </template>
- <script>
- import io from "../../io.js";
- export default {
- components: {},
- data: () => {
- return {
- importAccountSchemaName: "",
- schemas: []
- }
- },
- methods: {
- importAccountSchema() {
- this.socket.emit("accountSchema.import", this.importAccountSchemaName, (res) => {
- console.log(res);
- alert(res.status);
- });
- }
- },
- mounted() {
- io.getSocket(socket => {
- this.socket = socket;
- this.socket.emit("accountSchema.getAll", res => {
- this.schemas = res.schemas;
- });
- });
- }
- };
- </script>
- <style lang="scss" scoped>
- .schema-item {
- display: block;
- }
- </style>
|