| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="hello">
- <h1 :class="headingClasses">{{ msg }}</h1>
- </div>
- </template>
- <script>
- export default {
- name: 'basic',
- computed: {
- headingClasses: function headingClasses() {
- return {
- red: this.isCrazy,
- blue: !this.isCrazy,
- shadow: this.isCrazy,
- };
- },
- },
- data: function data() {
- return {
- msg: 'Welcome to Your Vue.js App',
- isCrazy: false,
- };
- },
- methods: {
- toggleClass: function toggleClass() {
- this.isCrazy = !this.isCrazy;
- },
- },
- };
- </script>
|