15 lines
257 B
Vue
15 lines
257 B
Vue
<template>
|
|
<div>
|
|
<p v-html="content"></p>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['content', 'duration'],
|
|
methods: {
|
|
cancel() {
|
|
this.$store.commit('updateStore', {name: 'showmodal', data: undefined})
|
|
}
|
|
}
|
|
}
|
|
</script> |