This commit is contained in:
syuilo 2018-05-28 15:10:57 +09:00
parent 163345e785
commit b7aa241945

View file

@ -53,11 +53,14 @@ export default define({
});
},
setting() {
this.props.url =window.prompt('URL', this.props.url);
const url = window.prompt('URL', this.props.url);
if (url && url != '') {
this.props.url = url;
this.save();
this.fetch();
}
}
}
});
</script>