Added actix-files and its dependencies (http-range, mime_guess, unicase, v_htmlescape) to enable static file functionality in the botserver. This will allow serving static assets and files through the web server. The change includes all required transitive dependencies for proper file handling and MIME type detection.
21 lines
477 B
HTML
21 lines
477 B
HTML
<template>
|
|
<div class="app-container">
|
|
<Header />
|
|
<Toolbar />
|
|
<FormulaBar />
|
|
<Spreadsheet />
|
|
<StatusBar />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from './Header.html'
|
|
import Toolbar from './Toolbar.html'
|
|
import FormulaBar from './FormulaBar.html'
|
|
import Spreadsheet from './Spreadsheet.html'
|
|
import StatusBar from './StatusBar.html'
|
|
|
|
export default {
|
|
components: { Header, Toolbar, FormulaBar, Spreadsheet, StatusBar }
|
|
}
|
|
</script>
|