当前位置:   article > 正文

vue官方文档笔记(选项式)

vue官方文档笔记(选项式)

1.响应式

  1. <script>
  2. export default {
  3. data(){
  4. return{
  5. message:'hello',
  6. counter:{
  7. count:1
  8. }
  9. }
  10. }
  11. }
  12. </script>
  13. <template>
  14. <h1>{{message}}</h1>
  15. <h1>{{counter.count}}</h1>
  16. </template>

2.v-bind:缩写成:

  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. titleClass: 'title'
  6. }
  7. }
  8. }
  9. </script>
  10. <template>
  11. <h1 :class='titleClass'>Make me red</h1>
  12. </template>
  13. <style>
  14. .title {
  15. color: red;
  16. }
  17. </style>

3.v-on:缩写成@ 

  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. count: 0
  6. }
  7. },
  8. methods:{
  9. plus(){
  10. this.count=this.count+1
  11. }
  12. }
  13. }
  14. </script>
  15. <template>
  16. <!-- 使此按钮生效 -->
  17. <button @click='plus'>count is: {{ count }}</button>
  18. </template>

4.v-model绑定

  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. text: ''
  6. }
  7. },
  8. }
  9. </script>
  10. <template>
  11. <input v-model='text'>
  12. <p>{{ text }}</p>
  13. </template>

 

5.条件渲染

  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. awesome: true
  6. }
  7. },
  8. methods: {
  9. toggle() {
  10. this.awesome=!this.awesome
  11. }
  12. }
  13. }
  14. </script>
  15. <template>
  16. <button @click="toggle">toggle</button>
  17. <h1 v-if='awesome'>Vue is awesome!</h1>
  18. <h1 v-else>Oh no
    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/475185
    推荐阅读
    相关标签