work.vue 759 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="work">
  3. <el-button type="primary" @click="vIfCommand">v-if 开关</el-button>
  4. <el-tag v-if="vif">vIf效果演示</el-tag>
  5. <br />
  6. <el-input v-model="input" placeholder="请输入内容" />
  7. <el-tag>{{input}}</el-tag>
  8. <child :val="val" @childByValue="childByValue" />
  9. </div>
  10. </template>
  11. <script>
  12. import child from "@/views/work/child";
  13. export default {
  14. name: "work",
  15. components: {
  16. child
  17. },
  18. data() {
  19. return {
  20. vif: false,
  21. input: "",
  22. val: "子组件默认内容"
  23. };
  24. },
  25. methods: {
  26. vIfCommand: function() {
  27. this.vif = !this.vif;
  28. },
  29. childByValue: function(chi) {
  30. console.log("bb");
  31. this.val = chi;
  32. this.input = chi;
  33. }
  34. }
  35. };
  36. </script>