September 2018
Intermediate to advanced
328 pages
9h 10m
English
Before we start adding Vue components to the application, let's create the HTML and CSS files that house our markup and styles. Create a file in the /src folder named index.html and populate it with the following contents:
<!doctype html><html lang="en-us"><head> <title>Cook the Books</title> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/css/uikit.min.css" /> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/js/uikit.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-rc.6/js/uikit-icons.min.js"></script> <script src="https://unpkg.com/accounting-js@1.1.1/dist/accounting.umd.js"></script> ...
Read now
Unlock full access