This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/src/App.vue

22 lines
329 B
Vue

<template>
<div id="app">
<WelcomeToDrupal version="8.6.3"/>
</div>
</template>
<script>
import WelcomeToDrupal from './components/WelcomeToDrupal.vue'
export default {
name: 'app',
components: {
WelcomeToDrupal,
}
}
</script>
<style>
@tailwind preflight;
@tailwind components;
@tailwind utilities;
</style>