bug fix in plugins sync
This commit is contained in:
parent
9113a15194
commit
23c6775f60
|
@ -1,11 +1,9 @@
|
|||
<script>
|
||||
import axios from "axios";
|
||||
import Swal from "sweetalert2";
|
||||
import Snackbar from '@/components/Snackbar.vue';
|
||||
|
||||
export default {
|
||||
name: "plugins",
|
||||
components: { Snackbar },
|
||||
data: () => {
|
||||
return {
|
||||
dialog: false,
|
||||
|
@ -200,7 +198,9 @@ export default {
|
|||
</v-form>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
<Snackbar v-model="snackbar.show" :color="snackbar.color" :text="snackbar.text" />
|
||||
<v-snackbar v-model="snackbar.show" :color="snackbar.color" timeout="3500" top right>
|
||||
{{ snackbar.text }}
|
||||
</v-snackbar>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
Loading…
Reference in a new issue