A QQ chat room based on vue.js

A QQ chat room based on vue.js

Introduction

This is a chat room component library developed based on vue.js, which provides basic encapsulation while maximizing scalability.

The following is a demonstration of the effect:

insert image description here

insert image description here

insert image description here

insert image description here

insert image description here

MChat component renderings:

insert image description here

insert image description here

IChat component effect diagram:

insert image description here

insert image description here

insert image description here

insert image description here

How to install

Install using npm

npm install vue-mchat

use

Import in main.js

# npm download method // enter css
import 'MChat/lib/MChat.css'
//Import component import MChat from 'MChat'
//Use vue to load components Vue.use(MChat)
#

How to carry out secondary development

Option 1:

Simply copy the pacages folder to the project you need, and introduce vue-mchat in main.js:

import App from './App.vue'
import MChat from '../packages/index'

Vue.use(MChat)

Option 2:

Developed on the basis of vue-mchat, it is packaged into a js library and introduced:

Execute in the vue-mchat directory:

npm run lib

You can get the lib file which contains the compiled file library of MChat. Copy the entire lib file into the project and introduce it in main.js:

import '../lib/MChat.css'
import MChat from '../lib/MChat.umd'

Vue.use(MChat)

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Implementation of QQ WeChat chat room function in Java
  • js code to realize multi-person chat room
  • Node.js+express+socket realizes online real-time multi-person chat room
  • js to write a simple chat room function
  • Node.js websocket uses socket.io library to implement real-time chat room
  • Node.js makes a simple chat room
  • Playing with NODE.JS (IV) - Code for building a simple chat room

<<:  Use of marker tags in CSS list model

>>:  HTML blockquote tag usage and beautification

Recommend

Sample code for modifying the input prompt text style in html

On many websites, we have seen the input box disp...

Solve the problem of installing Theano on Ubuntu 19

Solution: Directly in the directory where you dow...

ReactRouter implementation

ReactRouter implementation ReactRouter is the cor...

Detailed explanation of the relationship between Vue and VueComponent

The following case reviews the knowledge points o...

How to use mixins in Vue

Table of contents Preface How to use Summarize Pr...

Swiper.js plugin makes it super easy to implement carousel images

Swiper is a sliding special effects plug-in built...

Example of deploying Laravel application with Docker

The PHP base image used in this article is: php:7...

Examples of some usage tips for META tags in HTML

HTML meta tag HTML meta tags can be used to provi...

Summary of some points to note when registering Tomcat as a service

Here are some points to note when registering Tom...

How does JS understand data URLs?

Table of contents Overview Getting started with d...

Div adaptive height automatically fills the remaining height

Scenario 1: Html: <div class="outer"...

How to uninstall and reinstall Tomcat (with pictures and text)

Uninstall tomcat9 1. Since the installation of To...

How to set mysql permissions using phpmyadmin

Table of contents Step 1: Log in as root user. St...

Three ways to avoid duplicate insertion of data in MySql

Preface In the case of primary key conflict or un...

Introduction to /etc/my.cnf parameters in MySQL 5.7

Below are some common parameters of /etc/my.cnf o...