LoginSignup
2
2

More than 3 years have passed since last update.

Vue.jsで画像をドラッグ&ドロップでアップロードする枠外にドロップした際、画像を表示させない方法。

Last updated at Posted at 2020-06-01

ドラック&ドロップで間違って枠外にドロップしてしまうことがあります。
そうなると画像が表示されてしまい良いアップローダーとは、言えません。

以下を記述するだけで避けれます。


mounted () {
        window.ondrop = function(e){
            e.preventDefault();
        };
        window.ondragover = function(e){
            e.preventDefault();
        };
    }

参考になったら幸いです。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2