Vuido
GitHub
Search…
About Vuido
Introduction
Installation
Manual Configuration
Production Builds
Usage
Packaging
Built-in Components
Powered By
GitBook
Installation
Prerequisites
The following prerequisites are needed to compile
libui-node
, which is used by Vuido.
Windows
windows-build-tools
Visual C++ Redistributable Package for Visual Studio 2013
1
npm
install
--global --production windows-build-tools
Copied!
Linux
If they are not provided by default in your distribution:
build-essential
GTK+ 3
Ubuntu / Debian
1
sudo
apt
install
build-essential libgtk-3-dev
Copied!
OS X
Xcode
1
xcode-select --install
Copied!
Quick Setup
The easiest way to start using Vuido is to use Vue CLI to create a new project.
In order to use the
vue init
command, you can install the vue-cli package globally:
1
npm
install
--global vue-cli
Copied!
If you prefer to use the new
Vue CLI 3
instead, you have to install both @vue/cli and @vue/cli-init:
1
npm
install
--global @vue/cli @vue/cli-init
Copied!
Run the following command to create the project (replace
my-project
with the name of your project):
1
vue init mimecorg/vuido-webpack-template my-project
Copied!
Enter the directory created by vue-cli and install all dependencies:
1
cd
my-project
2
npm
install
Copied!
Now you can build and run your application:
1
npm
run build
2
npm
start
Copied!
Previous
Introduction
Next
Manual Configuration
Last modified
3yr ago
Copy link
Contents
Prerequisites
Windows
Linux
OS X
Quick Setup