随笔分类 -  vue 组件

摘要:Object.assign(this.$data, this.$options.data()); 阅读全文
posted @ 2021-10-25 09:54 ThisCall 阅读(151) 评论(0) 推荐(0) 编辑
摘要:注:自用,一些样式其他人可能没有 <!-- Vue SFC --> <template> <div class="container bxs"> <div class="ct-inner bxs"> <div class="ct-inner-fiexd w"> <el-input placehold 阅读全文
posted @ 2020-07-29 15:24 ThisCall 阅读(2334) 评论(1) 推荐(0) 编辑
摘要:https://github.com/vuejs/awesome-vue 阅读全文
posted @ 2018-04-07 21:10 ThisCall 阅读(2269) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> <style type="text/css"> /* 可以设置不同的进入和离开动画 */ /* 设置持续时间和动画函数 */ .slide 阅读全文
posted @ 2018-03-04 15:18 ThisCall 阅读(3685) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch 阅读全文
posted @ 2018-03-04 13:04 ThisCall 阅读(232) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch 阅读全文
posted @ 2018-03-04 11:24 ThisCall 阅读(167) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentMsg"> <br> <c 阅读全文
posted @ 2018-03-04 11:05 ThisCall 阅读(205) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <my-component></my-component> </div 阅读全文
posted @ 2018-03-04 10:49 ThisCall 阅读(128) 评论(0) 推荐(0) 编辑
摘要:Vue.component('todo-item', { template: '\ \ {{ title }}\ X\ \ ', props: ['title']})new Vue({ el: '#todo-list-example', data: { newTodoText: '', todos: [ {... 阅读全文
posted @ 2018-03-03 13:58 ThisCall 阅读(425) 评论(0) 推荐(0) 编辑