代码库 ******************************** 迷你vue =============================== 高频知识点 .. tabs:: .. tab:: 单个组件 .. literalinclude:: /../../webCode/vue/mini/APP.vue :language: html .. tab:: 多个组件 .. tabs:: .. tab:: 父组件App.vue .. literalinclude:: /../../webCode/vue/common/APP.vue :language: html .. tab:: 子组件ChildComp.vue .. literalinclude:: /../../webCode/vue/common/ChildComp.vue :language: html http客户端 ================================ https://github.com/imcvampire/vue-axios .. tabs:: .. tab:: vue-axios .. tabs:: .. tab:: main.js .. literalinclude:: /../../webCode/request/axios/main.js .. tab:: APP.vue .. literalinclude:: /../../webCode/request/axios/APP.vue :language: html .. tab:: go .. literalinclude:: /../../webCode/request/golang/main.go :language: go .. tab:: python .. tabs:: .. tab:: requests .. code-block:: python import requests response = requests.get('http://python.org') print(response.text) .. tab:: aiohttp .. code-block:: python import aiohttp async with aiohttp.ClientSession() as session: async with session.get('http://python.org') as response: print(await response.text()) 集成ui框架 ============================== https://bootstrap-vue-next.github.io/bootstrap-vue-next/docs.html#installation-vue-js .. tabs:: .. tab:: main.js .. literalinclude:: /../../webCode/ui/main.js .. tab:: vite.config.js .. literalinclude:: /../../webCode/ui/vite.config.js :language: javascript