我的github
posts - 3243,  comments - 42,  views - 158万

快速学习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:\node\node_global\vue,所以,肯定要先安装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/#/

 

posted on   XiaoNiuFeiTian  阅读(1198)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
历史上的今天:
2016-06-29 Android传感器——加速度传感器
2016-06-29 第三届空间信息智能服务研讨会
2016-06-29 2015全国博士生学术论坛(测绘科学与技术)
2016-06-29 2015“泛在测绘与位置大数据应用”国际工程论坛
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示