• Hello,Vue


    Vue版本

    vue对比.jpg

    Vue完整版

    1. 有编译器compiler,体积大功能多,可以直接把html字符串变成DOM节点
    2. 视图,此处为html字符串,写在index.html里或者写在new Vue构造选项template里
    3. 引入方法
    • cdn引入:在index.html里用script标签引入,bootcdn:vue.min.js(无注释的完整版)
    • webpack引入:需要配置alias(详见官方文档)
    • @vue/cli引入:需要额外配置(详见官方文档)

    Vue非完整版

    1. 无编译器compiler,体积小功能少了点
    2. 视图,只能自己在new Vue里写构造选项render函数里,用h来创建标签
    3. 引入方法
    • cdn引入:在index.html里用script标签引入,bootcdn:vue.runtime.min.js(无注释的非完整版)
    • webpack引入:默认使用非完整版的
    • @vue/cli引入:默认使用非完整版的
    Vue单文件组件
    • 在webpack打包时,vue-loader可以把vue文件翻译成带有render函数的一个对象,这样在main.js里引用就行了,就不用我们自己去写render函数了
    • 整个vue文件被翻译成一个对象
    • vue文件里的template里的html字符串被翻译成非完整版需要的render函数。

    非完整版好处
    1. 保证用户体验,用户下载的JS文件体积更小,但只支持render函数
    2. 开发者可直接在vue文件里写HTML标签,而不需要写render函数
    3. 因为可以用vue-loader 把vue文件里的HTML转为render函数

    template

    在index.html里引入run.runtime.min.js
    新建vue文件Demo.vue

    //在Demo.vue里
    <template>                  //在vue文件Demo.vue里的template里写html字符串
      <div id="app">
        {{n}}
        <button @click="add">+1</button>
      </div>
    </template>
    
    <script>
    import HelloWorld from "./components/HelloWorld.vue";
    
    export default {
      name: "App",
      data() {
        return { n: 0 };
      },
      methods: {
        add() {
          this.n += 1;
        }
      }
    };
    </script>
    
    <style>
    </style>
    
    
    

    render

    //在main.js里
    import Vue from "vue";
    import Demo from "./Demo.vue";//引入vue文件Demo.vue
    import { render } from "sass";
    
    Vue.config.productionTip = false; 
    
    new Vue({
     el: "#app", 
     render(h) {
       return h(Demo);   //这样用
     }
    });
    


    之后预览时,vue-loader就可以进行转换了

    codesandbox.io

    进入网站,选Vue,然后就可以正常使用了

    作者:过程是风景
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
  • 相关阅读:
    前端之 http
    事务、存储、索引与慢查询及数据库设计的三大范式
    Navcat 软件使用及 pymysql模块
    MySQL单表查询与多表查询
    IO 模型
    Unable to round-trip http request to upstream: read tcp 192.168.xx.xxx:xxxxx->xx.xxx.xxx.x:xxx: read: operation timed out
    恶补计算机基础知识(一)
    2020 年终总结
    自我总结Java并发编程基础篇(一)
    jvm系列(三):GC算法、垃圾收集器
  • 原文地址:https://www.cnblogs.com/justcho/p/13472827.html
Copyright © 2020-2023  润新知