mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
22 lines
226 B
Vue
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>
|