Skip to content

Instantly share code, notes, and snippets.

View xuexb's full-sized avatar
💬
最近工作忙。。。

前端小武 xuexb

💬
最近工作忙。。。
View GitHub Profile
@xuexb
xuexb / demo.vue
Created November 7, 2020 04:29
Vue.js 展开收起示例
<template>
<div>
<ul>
<li
v-for="(item, index) in comments"
:key="index"
>
<p>{{ item.content }}</p>
<ul
@xuexb
xuexb / js-data2html.md
Created August 8, 2016 13:41
js数据拼接html的另类方法
var data = [
    {
        id: 1,
        title: '标题1',
        content: '内容1'
    },
    {
        id: 2,
 title: '标题2',