123456789101112131415161718192021222324252627282930313233343536373839 |
- // components/navbar/index.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- },
- /**
- * 组件的初始数据
- */
- data: {
- activeMenu: 'index',
- menus: [{
- name: '首页',
- img: 'https://t18.9026.com/mini/index',
- key: 'index',
- url: '/pages/index/index'
- }, {
- name: '数据中心',
- img: 'https://t18.9026.com/mini/data',
- key: 'data',
- url: '/pages/data/index'
- }, {
- name: '个人中心',
- img: 'https://t18.9026.com/mini/account',
- key: 'account',
- url: '/pages/account/index'
- }]
- },
- /**
- * 组件的方法列表
- */
- methods: {
- }
- })
|