//在main.js中引入import com from'./package/index'Vue.prototype.$public=com.publicFunc
Vue.use(com)//在vue模块使用<template><div id="app"><ComButton></ComButton></div></template><script>exportdefault{mounted(){console.log(this.$public.func1());}}</script>
1. 在项目中操作数据库的步骤 ① 安装操作 MySQL 数据库的第三方模块(mysql) ② 通过 mysql 模块链接到 MySQL 数据库 ③ 通过 mysql 模块执行 SQL 语句 2. 安装 mysql 模块 这里要安装的是 mysql2 也就是 mysql 8.0后面的版本
npm init -y
npm…
全字段排序
假设这个表的部分定义是这样的:
CREATE TABLE t (id int(11) NOT NULL,city varchar(16) NOT NULL,name varchar(16) NOT NULL,age int(11) NOT NULL,addr varchar(128) DEFAULT NULL,PRIMARY KEY (id),KEY city (city)
) ENGINEInnoDB;
有如下 SQL 语…