随笔分类 - vue 组件
摘要:Object.assign(this.$data, this.$options.data());
阅读全文
摘要:注:自用,一些样式其他人可能没有 <!-- Vue SFC --> <template> <div class="container bxs"> <div class="ct-inner bxs"> <div class="ct-inner-fiexd w"> <el-input placehold
阅读全文
摘要:https://github.com/vuejs/awesome-vue
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> <style type="text/css"> /* 可以设置不同的进入和离开动画 */ /* 设置持续时间和动画函数 */ .slide
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentMsg"> <br> <c
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <my-component></my-component> </div
阅读全文
摘要:Vue.component('todo-item', { template: '\ \ {{ title }}\ X\ \ ', props: ['title']})new Vue({ el: '#todo-list-example', data: { newTodoText: '', todos: [ {...
阅读全文