mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 01:01:24 +00:00
be4f57410b
-Replaces old notification system but is also backwards compatible so no changes necessary - Now allows for the use of sending a table with text and caption - Can add as many types of notifications as wanted/needed - Configure position and icons in app,js (google icons or fontawesome)
37 lines
975 B
HTML
37 lines
975 B
HTML
<html>
|
|
<head>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/quasar@2.1.0/dist/quasar.prod.css"
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons"
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
/>
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"
|
|
defer
|
|
></script>
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/quasar@2.1.0/dist/quasar.umd.prod.js"
|
|
defer
|
|
></script>
|
|
<script src="app.js" defer></script>
|
|
</head>
|
|
<body style="font-family: 'Poppins', sans-serif">
|
|
<div
|
|
id="q-app"
|
|
style="min-height: 100vh"
|
|
></div>
|
|
</body>
|
|
</html> |