Version 1.0.2-Draft
This documents purpose is to formalize the Australian Nation Alliance (ANA)
The purpose of this alliance is to:
| const fs = require("fs") | |
| const path = require("path") | |
| const {createBundleRenderer} = require("vue-server-renderer") | |
| const LRU = require("lru-cache") | |
| const find = require("find") | |
| const {VueLoaderPlugin} = require("vue-loader") | |
| const webpack = require("webpack") | |
| const MFS = require("memory-fs") | |
| const {promisify} = require('util') |
| <template> | |
| <div id="app"> | |
| <asyncComp/> | |
| </div> | |
| </template> | |
| <script> | |
| import asyncComp from "./asyncComp" | |
| export default { | |
| name: "app", |
| // Define the interface for configuration options | |
| interface ConfettiOptions { | |
| colors?: string[]; // Array of color strings (e.g., hex codes) | |
| spawnRate?: number; // Number of particles to spawn per second | |
| particleSpeed?: number; // Speed of the confetti particles (pixels per second) | |
| size?: number; // Size of confetti (in pixels) | |
| angularSpeed?: number; // Rotational speed of the confetti (degrees per second) | |
| gravity?: number; // Gravity effect applied to the confetti's vertical movement (pixels per second squared) | |
| spread?: number; // Spread of confetti (controls the random deviation in velocities, in degrees) |