Vue
薛定谔的猫ゼ
一个喜欢音乐,动漫,游戏,和Code的程序员
展开
-
vue组件
vue的组件学习 概念:组件是可复用的 Vue 实例,所以它们与 new Vue 接收相同的选项,例如 data、computed、watch、methods 以及生命周期钩子等。仅有的例外是像 el 这样根实例特有的选项。 Vue.component("btn-component", { data() { return { count:0 } },原创 2020-09-03 16:36:24 · 151 阅读 · 0 评论 -
在webpack中使用vue的一些注意事项
一、在webpack中安装vue npm install vue -S //在运行时需要用到的,也就是生产环境 二、使用vue 在main.js中引入vue // 引入vue import Vue from "vue"; const app = new Vue({ el: "#content", data() { return { message: "我在main.js中通过模块化的方式导入了vue" } }, methods: { getMs原创 2020-09-03 16:31:50 · 124 阅读 · 0 评论