[web]: javascript 常用资源(es/jquery/vue/vue-axios/vue-router)
一、正文内容
[ ES: ECMAScript(javascript) ]
official_home := https://ecma-international.org/
official_doc := https://262.ecma-international.org/
[ jquery.js ]
official_url := https://jquery.com/
download := https://jquery.com/download/
cdn := https://releases.jquery.com/
<script src="https://code.jquery.com/jquery-3.7.1.min.js" </script>
[ vue.js ]
official_url := https://vuejs.org/
download := https://vuejs.org/guide/quick-start.html
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> :测试环境
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script> :生产环境
[ vue-axios ]
official_url := https://axios-http.com/
download := https://axios-http.com/docs/intro
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
[ vue-router ]
official_url := https://router.vuejs.org/
download := https://router.vuejs.org/installation.html
cdn := https://unpkg.com/vue-router@4
<script src="https://unpkg.com/vue-router@4"></script>
二、参考文档:
1、 ES(ECMAScript) := https://ecma-international.org/ https://262.ecma-international.org/
2、 jquery = https://jquery.com/
3、 vue = https://vuejs.org/
4、 vue-axios = https://axios-http.com/
5、 vue-router = https://router.vuejs.org/
本文由 lnlidawei 原创、整理、转载,本文来自于【博客园】; 整理和转载的文章的版权归属于【原创作者】; 转载或引用时请【保留文章的来源信息】:https://www.cnblogs.com/lnlidawei/p/18105589