0
0

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.

さくっとVue3をCodePenで試したい

Posted at

さくっとVue3をWebブラウザで試したい時に使えるTipsを見て、Qiitaとかteratailとかに実行可能なコード貼り付けたいなと思って試してみた。

設定

CodePenの settings で設定画面から、JSを選んで、https://unpkg.com/vue@nextを追加します。
スクリーンショット 2020-07-30 17.10.32.png

次に、HTMLにターゲットを用意します。

<!DOCUTYPE html>
<html>
  <body>
    <div id="vue-app" />
  </body>
<html>

更にさくっとやりたいときはpugを指定して

# vue-app

お行儀はよくないかもしれませんが、動作しました。

js

あとは元ネタと同様にVueのコードを書いていきます。
CodePenに書いたサンプルはこちらになります。
https://codepen.io/iwamoto-takaaki/pen/vYLqWar

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?