mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-10 00:11:22 +08:00
hound fix
This commit is contained in:
parent
e304ad8ee6
commit
e0003e0789
1 changed files with 15 additions and 15 deletions
|
|
@ -24,21 +24,21 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'editLaunchingApplicationModal',
|
name: 'editLaunchingApplicationModal',
|
||||||
props: {
|
props: {
|
||||||
fileName: String, application: String
|
fileName: String, application: String
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
$(this.$refs.modal).modal('show');
|
$(this.$refs.modal).modal('show');
|
||||||
$(this.$refs.modal).on('hidden.bs.modal', () => {
|
$(this.$refs.modal).on('hidden.bs.modal', () => {
|
||||||
this.$emit('cancel');
|
this.$emit('cancel');
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
cancel() {
|
cancel() {
|
||||||
$(this.$refs.modal).modal('hide');
|
$(this.$refs.modal).modal('hide');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue