Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const app = Vue.createApp({
- data() {
- return {
- userSelectedClass: "",
- paragraphVisibilityClass: "visible",
- userSelectedBackgroundColor: 'white',
- };
- },
- methods: {
- toggleParagraphVisibility() {
- this.paragraphVisibilityClass =
- this.paragraphVisibilityClass === "visible" ? "hidden" : "visible";
- },
- },
- });
- app.mount("#assignment");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement