zoukankan      html  css  js  c++  java
  • Vue 3.0初探

    项目创建

    全局安装vite-app

    npm i -g create-vite-app

    创建项目

    vue3test-project是项目名称

    create-vite-app vue3test-project

    代码编写

    实例化vue

    1. 引用vue
    import { reactive, toRefs, onMounted, computed, watch, watchEffect } from 'vue';
    
    1. 引用router
    import { useRouter } from 'vue-router'
    
    1. 组件内写法
    <template>
      <div @click="test()">
         1234567
      </div>
    </template>
    
    <script>
    import { reactive, toRefs, onMounted, computed, watch, watchEffect } from 'vue';
      export default {
        setup() {
          const state = reactive({
            // 这里写原来的data
          });
          onMounted(() => {});
    
          function test() {
            // 方法要return出去
          }
    
          return {
            ...toRefs(state),
            test
          };
        }
      };
    </script>
    
    <style lang="less" scoped>
    
    </style>
    
    
    1. 取data
         const state = reactive({
            type: 1
          });
    
          console.log(state.type);
    
    1. 数据监听(两种方式)
        watchEffect( () => {
          console.log(state.type, '改变')
        })
    
        watch(() => state.type, (newValue, oldValue) => {
          console.log(type, '改变')
        })
    
    1. 父传子

    父组件:

        <template>
            <test :type="type"/>
        </template>
    
    

    子组件:

    export default {
        name: 'test',
        props: {
            detail: {
              type: Object,
              default: {}
            }
          }
        setup(props) {
          console.log(props.type);
        }
    }
    
    1. 子传父

    父组件:

        <template>
            <test @onjieshou="jieshou"/>
        </template>
    
        function jieshou(value) {
          console.log(value); // value是1
        }
    

    子组件:

    export default {
        name: 'test',
        emits: ['onjieshou'],
        setup(props, { emit }) {
          function test() {
              emit('onjieshou', 1);
          }
        }
    }
    
  • 相关阅读:
    Shell 传递参数
    Shell 变量
    Shell 教程01
    linux yum 命令
    Linux vi/vim
    Linux 磁盘管理
    你应该知道的基础 Git 命令
    Linux 下五个顶级的开源命令行 Shell
    Fedora 23如何安装LAMP服务器
    如何在Fedora或CentOS上使用Samba共享
  • 原文地址:https://www.cnblogs.com/lzb1234/p/14823206.html
Copyright © 2011-2022 走看看