mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 06:06:56 +08:00
35 lines
654 B
Vue
35 lines
654 B
Vue
<template>
|
|
<infoModal ref="modal" :startHidden="true" :infoParams="{}" :title="'UPDATE'" :helpText="'HELP ME'">
|
|
UPDAE
|
|
</infoModal>
|
|
</template>
|
|
|
|
<script>
|
|
/* global HelperModule */
|
|
|
|
import axios from '../../../packs/custom_axios.js';
|
|
import InfoModal from '../../shared/info_modal.vue';
|
|
|
|
export default {
|
|
name: 'ImportRepositoryModal',
|
|
components: {InfoModal},
|
|
props: {
|
|
repositoryUrl: String, required: true
|
|
},
|
|
data() {
|
|
return {
|
|
infoParams: {}
|
|
};
|
|
},
|
|
created() {
|
|
window.importRepositoryModalComponent = this;
|
|
},
|
|
mounted() {
|
|
},
|
|
methods: {
|
|
open() {
|
|
this.$refs.modal.open();
|
|
}
|
|
}
|
|
};
|
|
</script>
|