• vue3.js by example&vue从入门到精通&vue菜鸟教程


    快速学习Vue web开发、全栈开发和跨平台开发的蓝图

     http://www.java1234.com/a/javabook/webbase/2021/0512/19938.html

    作者简介:John Au-Yeung is a frontend developer who has extensive experience with the latest frontend technologies. He has an MSc in information technology and a BSc in mathematics. He is also a part-time blogger who writes about the latest frontend development technologies. In addition, he is an author of many self published books about JavaScript programming. He has extensive experience with Vue and React and loves working with both. JavaScript programming is his focus and is what he does every day.

    杨宇强是一位前端开发人员,他对最新前端技术有着丰富的经验。他拥有信息技术硕士和数学理学士学位。他也是一位兼职博客,他写了最新的前端开发技术。此外,他还著有许多关于JavaScript编程的自出版书籍。他在Vue和React方面有丰富的经验,也喜欢和两个一起工作。JavaScript编程是他的重点,也是他每天都在做的。

    目录

    1. Creating Your First Application in Vue 3

    2. Building a Vue 3 Progressive Web App

    3. Building a Slider Puzzle Game with Tests

    4. Building a Photo Management Desktop App

    5. Building a Multipurpose Calculator Mobile App with lonic

    6. Building a Vacation Booking App with the PrimeVue UI Framework

    7. Creating a Shopping Cart System with GraphQL

    8. Building a Chat App with Vue 3, Laravel, and Socket.IO

    vue从入门到精通:https://www.kancloud.cn/dataoedu/vue/327300

    Vue.js是一套构建用户界面的渐进式框架。

    Vue从设计角度来讲,虽然能够涵盖这张图上所有的东西,但是你并不需要一上手就把所有东西全用上 ,因为没有必要。无论从学习角度,还是实际情况,这都是可选的。声明式渲染组件系统是Vue的核心库所包含内容,而客户端路由、状态管理、构建工具都有专门解决方案。这些解决方案相互独立,你可以在核心的基础上任意选用其他的部件,不一定要全部整合在一起。

    vue.js教程-RUNOOB

    https://www.runoob.com/vue2/vue-tutorial.html

    示例一:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Vue 测试实例 - 菜鸟教程(runoob.com)</title>
    <script src="https://unpkg.com/vue/dist/vue.js"></script>
    </head>
    <body>
    <div id="app">
      <p>{{ message }}</p>
    </div>
    
    <script>
    new Vue({
      el: '#app',
      data: {
        message: 'Hello Vue.js!'
      }
    })
    </script>
    </body>
    </html>

     安装vue-cli脚手架在D盘:D: ode ode_globalvue,所以,肯定要先安装Node.js啦,才能使用,关于nodejs请看:https://www.cnblogs.com/2008nmj/p/14353091.html

    (vue-cli和create-react-app对比:https://zhuanlan.zhihu.com/p/150512469     https://blog.csdn.net/csu_passer/article/details/102923527

    http://localhost:8081/#/

  • 相关阅读:
    Spring 中使用 Hibernate
    数据源
    Spring 对 DAO 的支持
    Spring Boot 整合模板引擎 Freemaker、thymeleaf
    Spring Boot 使用 Filter、Servlet、Listener、Interceptor
    Spring Boot 全局异常
    Spring Boot 启动方式
    Spring MVC 异常处理
    Spring MVC 装配拦截器
    结构体做函数参数
  • 原文地址:https://www.cnblogs.com/2008nmj/p/14948876.html
Copyright © 2020-2023  润新知