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

vue.js とは

Posted at

vue.js

Vueはユーザーインターフェイスを構築するためのプログレッシブフレームワークです。
一枚板のフレームワークとは異なり、Vueは少しずつ適用していけるように設計されています。
中核となるライブラリはview層だけに焦点を当てています。そのため、使い始めるのも、他のライブラリや既存のプロジェクトに統合するもの、とても簡単です。

Hello Vue!

<!DOCTYPE html>
<html>
    <head>
        <script src="https://cdn.jsdelivr.net/npm/vue"></script>
    </head>
    <body>
        <div id="app">
            {{ message }}
        </div>

        <script>
            var app = new Vue({
                el: '#app',
                data: {
                    message: 'Hello Vue! ' + new Date().toLocaleDateString()
                }
            })
        </script>
    </body>
</html>

参考

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