摘要:
drf认证组件 用户信息表 from django.db import models from django.contrib.auth.models import AbstractUser class User(AbstractUser): mobile = models.CharField(max 阅读全文
摘要:
小组件在components文件夹中,页面组件在views文件夹中 一、先写小组件的vue,比如text.vue(在template设置模板渲染,style设置样式) 二、页面组件(Home.vue)中使用小组件需要这几步: 1.先导入小组件(import T from '@/components/ 阅读全文