上記のうち、Paho JavaScript ClientについてはCDNによる提供がありません。 Paho JavaScript Clientの Download から mqttws31.js をダウンロードしておいてください。 サンプルコード <html lang="ja"> <body> <ul id="chat"> <li v-for="m in messages">{{ m }}</li> </ul> <input type="text" name="say" id="say" placeholder="Input a message here..."> <button id="send">Send</button> <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.16/vue.min.js" type="te

