LoginSignup
1
0

More than 3 years have passed since last update.

【Riot.js】cdnで楽々Hello World

Last updated at Posted at 2020-02-19

古いバージョンのRiotを使っていたので、【Riot.js】【訂正版】cdnで楽々Hello Worldを書きました。

Riot.jsの勉強を始めました。
npmやwebpackを使って学習する方法もありますが、エラーが出たり詰まるポイントが多いのでcdnを使って学習します。
ちなみに今回使うRiot.jsのcdnは以下です。
<script src="https://cdn.jsdelivr.net/npm/riot@3.6/riot+compiler.min.js"></script>

<html lang="ja">

 <head>
    <meta charset="UTF-8">
    <title>Riot sample</title>
    <script src="https://cdn.jsdelivr.net/npm/riot@3.6/riot+compiler.min.js"></script>
 </head>

 <body>

    <greet></greet>

    <script type="riot/tag">
    <greet>
        <h1>{word}</h1>
        this.word = 'Hello World'
    </greet>
    </script>

    <script>
      riot.mount('greet')
    </script>
 </body>

</html>

これでhtmlファイル1枚でHello Worldできます!楽チン!

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