- MUST have a structured government
- MUST have an institutionalized government
- MUST have citizens
- MUST have a defined land claim
- MUST have occupational power over land
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div id="app"> | |
| <asyncComp/> | |
| </div> | |
| </template> | |
| <script> | |
| import asyncComp from "./asyncComp" | |
| export default { | |
| name: "app", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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') |
