mirror of
https://github.com/overte-org/overte.git
synced 2025-08-16 07:11:37 +02:00
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!--
|
|
//
|
|
// inventory.html
|
|
//
|
|
// Created by kasenvr@gmail.com on 2 Apr 2020
|
|
// Copyright 2020 Vircadia Contributors
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
|
|
<!-- <link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet"> -->
|
|
<link href="./styles/vuetify.css" rel="stylesheet">
|
|
<link href="./styles/styles.css" rel="stylesheet">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
|
|
</head>
|
|
<body>
|
|
<div id="inventoryApp">
|
|
<v-app>
|
|
|
|
</v-app>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@2.x/dist/vue.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js"></script>
|
|
<script src="./index.js"></script>
|