Nhấn
CTRL + SPACE
để xem gợi ý code
Xem kết quả
Component trong Vue.js
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Vue.js Toidicode.com</title> </head> <style type="text/css"> </style> <body> <div id="app"> <tdc-component></tdc-component> </div> <script src="https://unpkg.com/vue@2.4.2" type="text/javascript"></script> <script type="text/javascript"> var app = new Vue({ el: '#app', components: { 'tdc-component': { template : '<h1>Chào mừng bạn đến với website Toidicode.com</h1>' } } }); </script> </body> </html>