修改 nuxt.config.js /* ** Build configuration */ build: { /* 如果node_modules中使用了ES6导致浏览器报错,使用transpile告知babel需要编译 */ transpile: [/has-values|ramda/], babel: { babelrc: fa ...
官方文档:计算属性和侦听器 handler 方法和 immediate 属性 watch: { firstName: { handler(newName, oldName) { this.fullName = newName + ' ' + ...
有时候,我们需要将组件定义为全局组件,即组件在 HTML 根上,在任何地方都可以调用,比如 Alert 组件。 react 版 import React from "react"; import ReactDOM from "react-dom"; import Alert from "./Alert"; const AlertWrapper = props => { ...
vue2-editor 是个不错的富文本编辑器,但是美中不足的是他把图片全部作为 BASE64 上传了,但我们一般是存 URL,这有利于数据库优化和异步加载,所以才自己包装了一下。 关于文件异步上传,可以看我另一篇文章: 包装如下: <div style="position: ...
vuejs1.x 的笔记都整合到这里了。 vuejs1.x 中的过滤器高级用法 当过滤器用于 model 时,需要考虑回填的现象。 默认情况下,过滤之后的新值会回填到 data 中,有时后我们需要对回填的值做处理,参考以下代码(引用自官方文档): Vue.filter("currencyDisplay", { // model -> view ...