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