Recommend this page to a friend! |
Classes of afshin akhgar | > | Vue js Starter Kit | > | resource/components/app.vue | > | Download |
|
|
![]() |
<style> .red { color: #f00; } </style> <template> <h1 class="red">{{msg}}</h1> </template> <script> export default { data () { return { msg: 'Hello world!' } } } </script> |