4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vue.jsで作るクリックされたら全選択されるテキストエリア

Posted at

Vue.jsにてテキストエリア、またはテキストボックスをクリックした際に
全選択させる方法
コピーしてリンクを共有してもらうようなテキストエリア用です。

sample.vue
<template>
  <div>
    <label for="fullPath">コピーして共有</label>
    <input ref="target" type="text" @click="$refs.target.select()">
    </form>
  </div>
</template>

input領域を用意します。ここはなんでも大丈夫です。テキスト選択できるようなUIが好ましいと思います。
<input type="text">

refを使ってDomのオブジェクトへの参照を定義します。

利用するときは$refs.{定義した名前}

文字選択のメソッド select() はJavascriptに実装されています。

JavascriptのサンプルだとonClick="this.select()"のように利用されているので
こちらをVue用にまるまる置き換えた形になります。

4
4
2

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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?