Files
linguist/samples/Vue/basic.vue
2015-07-21 18:51:55 -04:00

22 lines
226 B
Vue

<style>
.red {
color: #f00;
}
</style>
<template>
<div>
<h2 v-class="red">{{msg}}</h2>
</div>
</template>
<script>
module.exports = {
data: function () {
return {
msg: 'Hello from Vue!'
}
}
}
</script>