2021-09-13から1日間の記事一覧

Vue.jsの練習の準備 練習用HTMLに外部CSSとVue.jsを読み込む

適当なディレクトリに、sample.html 同階層にsample.cssを作成する。 <html lang="en"> <head> <link rel="stylesheet" href="sample1.css" type="text/css"> </head> <body> // HTML <script src="https://jp.vuejs.org/js/vue.js"></script> <script> // Vue.js </script> </body> </html>