Skip to main content
Yiju Care GuidePreparing your page
医疗级专业核验
透明收费 · 拒绝隐形 Daily 08:00-20:00

Verified Listings · Professional Advisors · Free Matching

Find Senior Communities

Compare communities by location, care needs and budget, with clear pricing, availability and verified service details.

  • 2,486 communities
  • 38 service cities
  • 7×12h Advisor Hours

Senior Care News & Communities

On this page 8 items
View All Communities
vue 打包配置News
Senior Care News

vue 打包配置

打包之前需要在 vue.config.js 配置如下 assetsDir: 'static', // outputDir的静态资源(js、css、img、fonts)目录 publicPath: './', // 静态资源路径(默认/,如果不改打包后会白屏)

Read More
vue 底部选项卡News
Senior Care News

vue 底部选项卡

<template> <div class="layout"> <router-view /> <div class="navbar_bottom"> <ul> <li @click="to(v, i)" v-fo...

Read More
vue 页面传递参数和接收参数News
Senior Care News

vue 页面传递参数和接收参数

方法一:query 浏览器地址传递参数(页面刷新参数依然保留) 传递参数 this.$router.push({ path:'/info', //路径名 query:v //接收的参数 }) 接收参数 this.$route.query 方法二:params (页面刷新参数就销毁...

Read More
BUG记录News
Senior Care News

BUG记录

功能:点击提交清空表单值 数据结构 form: { name: "",//名称 img: '',//图片地址 price: 0,//单价 num: 0,//数量 sel: false, }, 点击事件 this.list.push(this.form) 数据存储 list: 当...

Read More
vue 全选状态和单选状态News
Senior Care News

vue 全选状态和单选状态

功能需求:点击全选,选中所有复选框,选中之后,如果取消某一个复选框,全选状态自动取消。 1.全选按钮:实现思路,点击全选按钮,遍历所有列表复选框,吧全选按钮的状态(true|false)赋值给每一个列表复选框 代码如下: <p class="qx">全选<inp...

Read More
methods和computed之前的区别News
Senior Care News

methods和computed之前的区别

1.methods和computed相同点都是可以进行一个计算 2.methods和computed不同点,computed比methods的运行效率高,methods每次被调用都会执行,但是computed只会执行一次,(只有当引用的值发送改变的时候才会执行,有缓存功能,提高...

Read More
vue中style行内样式和claass动态样式News
Senior Care News

vue中style行内样式和claass动态样式

1.在vue中style行内动态样式通过 :style来开启动态属性,style={样式名:值}控制如下: <p :style="{ backgroundColor: cor, fontSize: size }">这是一段文本</p> export de...

Read More
every判断所有元素是否为真News
Senior Care News

every判断所有元素是否为真

今天写vue项目遇到需要判断所有input框是否都填写了内容,用到了一个every具体如下: 判断每一个input是否都填写了内容 <input :type="v.type" :placeholder="v.ts" v-model="v.md" /> title: [...

Read More

Selection Guide